chatgpt-api/examples/basic.ts

18 wiersze
423 B
TypeScript

import 'dotenv/config'
import { OpenAIClient } from 'openai-fetch'
import { z } from 'zod'
import { Agentic } from '@/agentic'
async function main() {
const openai = new OpenAIClient({ apiKey: process.env.OPENAI_API_KEY! })
const $ = new Agentic({ openai })
const example = await $.gpt4(`generate fake data`)
.output(z.object({ foo: z.string(), bar: z.number() }))
.call()
console.log(example)
}
main()