mirror of
https://github.com/LukeHagar/log10go.git
synced 2025-12-06 20:47:44 +00:00
30 lines
1.0 KiB
Markdown
30 lines
1.0 KiB
Markdown
# ~~CreateChatCompletionRequestFunctionCall~~
|
|
|
|
Deprecated in favor of `tool_choice`.
|
|
|
|
Controls which (if any) function is called by the model.
|
|
`none` means the model will not call a function and instead generates a message.
|
|
`auto` means the model can pick between generating a message or calling a function.
|
|
Specifying a particular function via `{"name": "my_function"}` forces the model to call that function.
|
|
|
|
`none` is the default when no functions are present. `auto` is the default if functions are present.
|
|
|
|
|
|
> :warning: **DEPRECATED**: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
|
|
|
|
## Supported Types
|
|
|
|
### One
|
|
|
|
```go
|
|
createChatCompletionRequestFunctionCall := components.CreateCreateChatCompletionRequestFunctionCallOne(components.One{/* values here */})
|
|
```
|
|
|
|
### ChatCompletionFunctionCallOption
|
|
|
|
```go
|
|
createChatCompletionRequestFunctionCall := components.CreateCreateChatCompletionRequestFunctionCallChatCompletionFunctionCallOption(components.ChatCompletionFunctionCallOption{/* values here */})
|
|
```
|
|
|