1.6.0 • Published 10 months ago

@formula-monks/kurt-vertex-ai v1.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Kurt Adapter for Vertex AI

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 Vertex AI's Gemini models.

Read here for more information about Kurt.

Examples

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

import { Kurt } from "@formula-monks/kurt"
import { KurtVertexAI } from "@formula-monks/kurt-vertex-ai"
import { VertexAI } from "@google-cloud/vertexai"
import { z } from "zod"

const vertexAdapter = new KurtVertexAI({
  vertexAI: new VertexAI({
    project: process.env.VERTEX_AI_PROJECT ?? "my-project",
    location: process.env.VERTEX_AI_LOCATION ?? "us-central1",
  }),
  model: "gemini-1.0-pro", // or any other supported model
})

const kurt = new Kurt(vertexAdapter)

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" }
1.6.0

10 months ago

1.2.0

1 year ago

1.5.0

1 year ago

1.4.0

1 year ago

1.3.0

1 year ago

1.2.1

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago