kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
29 wiersze
918 B
JavaScript
29 wiersze
918 B
JavaScript
#!/usr/bin/env node
|
|
import 'dotenv/config'
|
|
|
|
import { DiffbotClient, SearchAndCrawl, SerpAPIClient } from '@agentic/stdlib'
|
|
import { createDexterFunctions } from '@agentic/stdlib/dexter'
|
|
import { ChatModel, createAIRunner } from '@dexaai/dexter'
|
|
|
|
async function main() {
|
|
const serpapi = new SerpAPIClient()
|
|
const diffbot = new DiffbotClient()
|
|
const searchAndCrawl = new SearchAndCrawl({ serpapi, diffbot })
|
|
|
|
const runner = createAIRunner({
|
|
chatModel: new ChatModel({
|
|
params: { model: 'gpt-4o', temperature: 0 }
|
|
// debug: true
|
|
}),
|
|
functions: createDexterFunctions(searchAndCrawl),
|
|
systemMessage:
|
|
'You are a McKinsey analyst who is an expert at writing executive summaries. Always cite your sources and respond using Markdown.'
|
|
})
|
|
|
|
const topic = 'the 2024 olympics'
|
|
const result = await runner(`Summarize the latest news on ${topic}`)
|
|
console.log(result)
|
|
}
|
|
|
|
await main()
|