npm

@formula-monks/kurt-open-ai
TypeScript icon, indicating that this package has built-in type declarations

1.8.1 • Public • Published

Kurt Adapter for OpenAI

Kurt is a TypeScript library by Formula.Monks that wraps AI SDKs, making it easy to build structured LLM-based applications (RAG, agents, etc) that work with any LLM that supports structured output (via function calling features).

This package implements an adapter for Kurt that works with OpenAI's GPT models.

Read here for more information about Kurt.

Examples

This example code shows how to set up and use Kurt with OpenAI.

import { Kurt } from "@formula-monks/kurt"
import { KurtOpenAI } from "@formula-monks/kurt-open-ai"
import OpenAI from "openai"
import { z } from "zod"

const openAIAdapter = new KurtOpenAI({
  openAI: new OpenAI(),
  model: "gpt-3.5-turbo-0125",
})

const kurt = new Kurt(openAIAdapter)

const stream = kurt.generateStructuredData({
  // or any other generation method
  prompt: "Say hello!",
  schema: z.object({
    say: z.string().describe("A single word to say"),
  }),
})

const { data } = await stream.result
console.log(data) // { say: "hello" }

Readme

Keywords

none

Package Sidebar

Install

npm i @formula-monks/kurt-open-ai

Weekly Downloads

119

Version

1.8.1

License

MIT

Unpacked Size

25.4 kB

Total Files

8

Last publish

Collaborators

  • fsaravia
  • josh.robichaud
  • jbossalini-fm
  • jemc-formula