Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

yitechx-ai

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yitechx-ai

Node.js client for YitechX AI API

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
67
Maintainers
0
Weekly downloads
 
Created
Source

yitechx-ai

yitechx-ai Node.js modülü, YiTechX API'si ile kolayca entegre olmanızı sağlar. Bu modül, sohbet geçmişini destekler ve API üzerinden mesaj gönderip yanıt almanızı sağlar.

Kurulum

npm install yitechx-ai

Kullanım

const YiAI = require('yitechx-ai');

// API anahtarınızı girin
const client = new YiAI('sk-your-api-key');

// Sohbet mesajı gönder
(async () => {
  try {
    const chatHistory = [
      { role: 'user', content: 'Merhaba, sen kimsin?' },
      { role: 'model', content: 'Merhaba! Ben bir yapay zeka asistanıyım.' }
    ];

    const response = await client.sendMessage("Bana biraz kendinden bahseder misin?", chatHistory);
    console.log("Yanıt:", JSON.stringify(response, null, 2));
  } catch (error) {
    console.error("Hata:", error.message);
  }
})();

Metodlar

sendMessage(prompt, chatHistory = [], temperature = 0.7)

API'ye bir mesaj gönderir ve yanıt alır.

  • prompt (string): Kullanıcının sorusu veya mesajı.
  • chatHistory (array): Sohbet geçmişi. Örneğin:
    [
      { role: 'user', content: 'Merhaba!' },
      { role: 'model', content: 'Merhaba! Size nasıl yardımcı olabilirim?' }
    ]
    
  • temperature (float): Modelin yaratıcılık seviyesi. Varsayılan 0.7.

Yanıt

Başarılı bir yanıt aşağıdaki gibi görünebilir:

{
  "response": "Ben YiTechX AI asistanıyım. Size nasıl yardımcı olabilirim?"
}

Hata Yönetimi

Modül, istek sırasında oluşan hataları yönetir ve ayrıntılı hata mesajları döner:

try {
  const response = await client.sendMessage("Test mesajı");
} catch (error) {
  console.error("Hata:", error.message);
}

Bağımlılıklar

  • axios: HTTP isteklerini kolayca yapmak için.

Keywords

FAQs

Package last updated on 17 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc