mirror of
https://github.com/LukeHagar/log10go.git
synced 2025-12-09 20:47:49 +00:00
Updating github integration
This commit is contained in:
16
models/components/chatcompletionfunctioncalloption.go
Normal file
16
models/components/chatcompletionfunctioncalloption.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user