mirror of
https://github.com/LukeHagar/log10go.git
synced 2025-12-06 20:47:44 +00:00
17 lines
458 B
Go
17 lines
458 B
Go
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
package components
|
|
|
|
// ChatCompletionFunctionCallOption - Specifying a particular function via `{"name": "my_function"}` forces the model to call that function.
|
|
type ChatCompletionFunctionCallOption struct {
|
|
// The name of the function to call.
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
func (o *ChatCompletionFunctionCallOption) GetName() string {
|
|
if o == nil {
|
|
return ""
|
|
}
|
|
return o.Name
|
|
}
|