Example Usage
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
description | string | :heavy_minus_sign: | Function description for the model | Get the current weather for a location |
name | string | :heavy_check_mark: | Function name (a-z, A-Z, 0-9, underscores, dashes, max 64 chars) | get_weather |
parameters | Record<string, *any*> | :heavy_minus_sign: | Function parameters as JSON Schema object | {"properties": {"location": {"description": "City name","type": "string"}}, “required”: [ “location” ], “type”: “object” } |
strict | boolean | :heavy_minus_sign: | Enable strict schema adherence | false |