Merge remote-tracking branch 'upstream/main' into feature/canceled

This commit is contained in:
이대희
2026-02-13 15:07:32 +09:00
2 changed files with 16 additions and 2 deletions

View File

@@ -742,6 +742,20 @@ func GetOpenAIModels() []*ModelInfo {
SupportedParameters: []string{"tools"}, SupportedParameters: []string{"tools"},
Thinking: &ThinkingSupport{Levels: []string{"low", "medium", "high", "xhigh"}}, Thinking: &ThinkingSupport{Levels: []string{"low", "medium", "high", "xhigh"}},
}, },
{
ID: "gpt-5.3-codex-spark",
Object: "model",
Created: 1770912000,
OwnedBy: "openai",
Type: "openai",
Version: "gpt-5.3",
DisplayName: "GPT 5.3 Codex Spark",
Description: "Ultra-fast coding model.",
ContextLength: 128000,
MaxCompletionTokens: 128000,
SupportedParameters: []string{"tools"},
Thinking: &ThinkingSupport{Levels: []string{"low", "medium", "high", "xhigh"}},
},
} }
} }

View File

@@ -28,8 +28,8 @@ import (
) )
const ( const (
codexClientVersion = "0.98.0" codexClientVersion = "0.101.0"
codexUserAgent = "codex_cli_rs/0.98.0 (Mac OS 26.0.1; arm64) Apple_Terminal/464" codexUserAgent = "codex_cli_rs/0.101.0 (Mac OS 26.0.1; arm64) Apple_Terminal/464"
) )
var dataTag = []byte("data:") var dataTag = []byte("data:")