CreateChatCompletionStreamToolCalls
Example Usage
typescript
import { CreateChatCompletionStreamToolCalls } from "@meetkai/mka1/models/operations";
let value: CreateChatCompletionStreamToolCalls = {
id: "<id>",
function: {
name: "<value>",
arguments: "<value>",
},
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | ✔️ | The ID of the tool call |
type | string | ✔️ | The type of the tool. Currently only 'function' is supported. |
function | operations.CreateChatCompletionStreamFunction | ✔️ | The function to be called |