CreateChatCompletionStreamTools
A tool the model may call while generating a response.
Example Usage
typescript
import { CreateChatCompletionStreamTools } from "@meetkai/mka1/models/operations";
let value: CreateChatCompletionStreamTools = {
function: {
name: "<value>",
},
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | ✔️ | The type of the tool. Currently only 'function' is supported. |
function | operations.CreateChatCompletionStreamLlmChatFunction | ✔️ | The function definition |