Initial commit

This commit is contained in:
Niklas Nielsen
2024-05-24 19:20:08 -07:00
commit ebd24efca7
171 changed files with 20261 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# ~~ChatCompletionResponseMessageFunctionCall~~
Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.
> :warning: **DEPRECATED**: This will be removed in a future release, please migrate away from it as soon as possible.
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `arguments` | *str* | :heavy_check_mark: | The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function. |
| `name` | *str* | :heavy_check_mark: | The name of the function to call. |