hyv
1.0.0
Hyv는 다양한 AI 모델의 통합과 상호 작용을 간소화하도록 설계된 다목적 라이브러리입니다. 깔끔하고 직관적이며 통합된 API를 갖춘 Hyv를 통해 개발자는 다양한 AI 모델을 손쉽게 관리하고 협업할 수 있습니다.
지금 Hyv를 시작해보세요:
npm i @hyv/core @hyv/openai
그런 다음 .env
파일에 apiKey를 제공하십시오.
OPENAI_API_KEY=sk-xxxxxxxx
Hyv가 실제로 작동하는 것을 경험해 보려면 다음의 간단한 예를 시도해 보세요.
import { Agent } from "@hyv/core" ;
import { GPTModelAdapter , DallEModelAdapter } from "@hyv/openai" ;
// Create agents
const writer = new Agent ( new GPTModelAdapter ( ) ) ;
const artist = new Agent ( new DallEModelAdapter ( ) , {
// Preprocess the task
async before ( message ) {
return { images : [ { path : "the-future.png" , prompt : message . answer } ] } ;
} ,
} ) ;
// Assign tasks
const writerResult = await writer . assign ( {
question : "Describe the future to an artist so that they can draw it" ,
} ) ;
const artistResult = await artist . assign ( writerResult . message ) ;
// Do something with the result
console . log ( artistResult . message . content ) ;
대화형 다국어 문서를 통해 Hyv의 세계에 빠져보세요. Hyv 에이전트와 GPT-4를 기반으로 학습을 역동적인 경험으로 바꿔줍니다. 11개 언어로 실시간으로 소통하면서 Hyv의 기능을 이해하세요. 간단한 설정, 심오한 학습. 지금 쉬운 설정 가이드로 여행을 시작해 보세요!
Hyv는 개발자를 위한 올인원 솔루션입니다.
오늘 Hyv와 함께 미래를 맞이하세요!