Skip to content

Commit

Permalink
Merge pull request #12 from FormulaMonks/add/optional-tools
Browse files Browse the repository at this point in the history
feat: add generateWithOptionalTools to Kurt interface
  • Loading branch information
jemc authored May 7, 2024
2 parents 5b2e6c3 + aa7d9f5 commit eefb32d
Show file tree
Hide file tree
Showing 7 changed files with 933 additions and 25 deletions.
73 changes: 73 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ const kurt: Kurt = new KurtVertexAI({

## Generate Natural Language Output

The most basic use case for an LLM is to ask it to generate some text.

```ts
const stream = kurt.generateNaturalLanguage({
prompt: "Say hello!",
Expand Down Expand Up @@ -73,6 +75,12 @@ console.log(text)

## Generate Structured Data Output

If we want an LLM to make decisions or perform tasks within a larger system, we often need it to format its response as structured data rather than natural language.

Using the `zod` library as a convenient way to specify a JSON schema in TypeScript, we can force the LLM to generate structured data that conforms to the given schema.

For best results, be sure to include descriptions of every field in the schema, as these will be used by the LLM as documentation to determine how best to fill the fields with data.

```ts
import { z } from "zod"

Expand All @@ -97,3 +105,68 @@ const { data } = await stream.result
console.log(data)
// { say: "hello" }
```

## Generate With Optional Tools

Sometimes we may want to ask the LLM to produce a natural language response, but with the option of using some tools (in a structured data format) as part of its self-directed process of fulfilling the prompt.

This is a bit of a mixture of the above two cases - we are expecting the LLM to make zero or more tool calls, and then eventually produce a natural language response.

As above, we can use the `zod` library to conveniently declare the JSON schema for the tools, given as a map of named tools.

Again, for best results, we should include helpful descriptions of each tool schema, and each field within them, so that the LLM can make a more informed decision about how to use the tools.

```ts
import { z } from "zod"

const prompt =
"What's 9876356 divided by 30487, rounded to the nearest integer?"

const tools = {
subtract: z
.object({
minuend: z.number().describe("The number to subtract from"),
subtrahend: z.number().describe("The number to subtract by"),
})
.describe("Calculate a subtraction expression"),
divide: z
.object({
dividend: z.number().describe("The number to be divided"),
divisor: z.number().describe("The number to divide by"),
})
.describe("Calculate a division expression"),
}

// Run Kurt in a loop until it produces a natural language response,
// or until we reach a maximum number of iterations.
const extraMessages: KurtMessage[] = []
const MAX_ITERATIONS = 3
for (let i = 0; i < MAX_ITERATIONS; i++) {
const { text, data } = await kurt.generateWithOptionalTools({
prompt,
tools,
}).result

// If there is data in the result, it means the LLM made a tool call.
if (data) {
const { name, args } = data
let result = {}
if (name === "divide") {
result = { quotient: args.dividend / args.divisor }
} else if (name === "subtract") {
result = { difference: args.minuend - args.subtrahend }
}
const toolCall = { name, args, result }
extraMessages.push({ role: "model", toolCall })
console.log(toolCall)
// {
// name: "divide",
// args: { dividend: 9876356, divisor: 30487 },
// result: { quotient: 323.95302915996984 },
// }
} else {
console.log(text) // "The answer, rounded to the nearest integer, is 324."
break
}
}
```
Loading

0 comments on commit eefb32d

Please sign in to comment.