kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
31 wiersze
776 B
TypeScript
31 wiersze
776 B
TypeScript
/* eslint-disable no-process-env */
|
|
import 'dotenv/config'
|
|
|
|
import { WeatherClient } from '@agentic/weather'
|
|
import { createXSAITools } from '@agentic/xsai'
|
|
import { generateText } from 'xsai'
|
|
|
|
async function main() {
|
|
const weather = new WeatherClient()
|
|
|
|
const result = await generateText({
|
|
apiKey: process.env.OPENAI_API_KEY!,
|
|
baseURL: 'https://api.openai.com/v1/',
|
|
model: 'gpt-4o-mini',
|
|
tools: await createXSAITools(weather),
|
|
toolChoice: 'required',
|
|
temperature: 0,
|
|
messages: [
|
|
{
|
|
role: 'system',
|
|
content: 'You are a helpful assistant. Be as concise as possible.'
|
|
},
|
|
{ role: 'user', content: 'What is the weather in San Francisco?' }
|
|
]
|
|
})
|
|
|
|
console.log(JSON.stringify(result, null, 2))
|
|
}
|
|
|
|
await main()
|