Updating github integration

This commit is contained in:
Niklas Nielsen
2024-05-24 18:26:16 -07:00
commit 65b44423c6
179 changed files with 23972 additions and 0 deletions

View 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
}