0.2.2 • Published 5 months ago

@gensx/vercel-ai v0.2.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
5 months ago

@gensx/vercel-ai

Vercel AI SDK for GenSX

Installation

npm install @gensx/vercel-ai

Requires @gensx/core

This package requires @gensx/core to be installed as a peer dependency.

npm install @gensx/core

Usage

import * as gensx from "@gensx/core";
import { generateText, streamText } from "@gensx/vercel-ai";

@Component()
async function ChatBot({ userInput }: { userInput: string }): Promise<string> {
  const result = await generateText({
    messages: [
      { role: "system", content: "You are a helpful assistant." },
      { role: "user", content: userInput },
    ],
    model: "gpt-4o",
    temperature: 0.7,
  });
  return result.text;
}
0.2.2

5 months ago

0.2.1

5 months ago

0.2.0

5 months ago

0.2.0-alpha.5

5 months ago

0.2.0-alpha.4

5 months ago

0.2.0-alpha.3

5 months ago

0.2.0-alpha2

5 months ago

0.2.0-alpha1

5 months ago