Skip to content

Commit 914c267

Browse files
fix(responses): correct computer use enum value (#261)
1 parent fa0dc6b commit 914c267

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 76
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-be834d63e326a82494e819085137f5eb15866f3fc787db1f3afe7168d419e18a.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-9ce5257763fb30c6e0e1ee2bef7e13baf661511e09572207e528d643da8e16b3.yml

chatcompletion.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -2200,7 +2200,7 @@ func (r ChatCompletionNewParams) MarshalJSON() (data []byte, err error) {
22002200
// `none` is the default when no functions are present. `auto` is the default if
22012201
// functions are present.
22022202
//
2203-
// Satisfied by [ChatCompletionNewParamsFunctionCallString],
2203+
// Satisfied by [ChatCompletionNewParamsFunctionCallFunctionCallMode],
22042204
// [ChatCompletionFunctionCallOptionParam].
22052205
//
22062206
// Deprecated: deprecated
@@ -2211,22 +2211,22 @@ type ChatCompletionNewParamsFunctionCallUnion interface {
22112211
// `none` means the model will not call a function and instead generates a message.
22122212
// `auto` means the model can pick between generating a message or calling a
22132213
// function.
2214-
type ChatCompletionNewParamsFunctionCallString string
2214+
type ChatCompletionNewParamsFunctionCallFunctionCallMode string
22152215

22162216
const (
2217-
ChatCompletionNewParamsFunctionCallStringNone ChatCompletionNewParamsFunctionCallString = "none"
2218-
ChatCompletionNewParamsFunctionCallStringAuto ChatCompletionNewParamsFunctionCallString = "auto"
2217+
ChatCompletionNewParamsFunctionCallFunctionCallModeNone ChatCompletionNewParamsFunctionCallFunctionCallMode = "none"
2218+
ChatCompletionNewParamsFunctionCallFunctionCallModeAuto ChatCompletionNewParamsFunctionCallFunctionCallMode = "auto"
22192219
)
22202220

2221-
func (r ChatCompletionNewParamsFunctionCallString) IsKnown() bool {
2221+
func (r ChatCompletionNewParamsFunctionCallFunctionCallMode) IsKnown() bool {
22222222
switch r {
2223-
case ChatCompletionNewParamsFunctionCallStringNone, ChatCompletionNewParamsFunctionCallStringAuto:
2223+
case ChatCompletionNewParamsFunctionCallFunctionCallModeNone, ChatCompletionNewParamsFunctionCallFunctionCallModeAuto:
22242224
return true
22252225
}
22262226
return false
22272227
}
22282228

2229-
func (r ChatCompletionNewParamsFunctionCallString) implementsChatCompletionNewParamsFunctionCallUnion() {
2229+
func (r ChatCompletionNewParamsFunctionCallFunctionCallMode) implementsChatCompletionNewParamsFunctionCallUnion() {
22302230
}
22312231

22322232
// Deprecated: deprecated

chatcompletion_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func TestChatCompletionNewWithOptionalParams(t *testing.T) {
3838
Voice: openai.F(openai.ChatCompletionAudioParamVoiceAlloy),
3939
}),
4040
FrequencyPenalty: openai.F(-2.000000),
41-
FunctionCall: openai.F[openai.ChatCompletionNewParamsFunctionCallUnion](openai.ChatCompletionNewParamsFunctionCallString(openai.ChatCompletionNewParamsFunctionCallStringNone)),
41+
FunctionCall: openai.F[openai.ChatCompletionNewParamsFunctionCallUnion](openai.ChatCompletionNewParamsFunctionCallFunctionCallMode(openai.ChatCompletionNewParamsFunctionCallFunctionCallModeNone)),
4242
Functions: openai.F([]openai.ChatCompletionNewParamsFunction{{
4343
Name: openai.F("name"),
4444
Description: openai.F("description"),

0 commit comments

Comments
 (0)