Merge pull request #1940 from 4fuu/fix/bump-codex-cli-version-to-0.125.0
fix(openai): bump codex CLI version from 0.104.0 to 0.125.0
This commit is contained in:
commit
641e61073f
@ -116,7 +116,7 @@ func TestLogOpenAIRemoteCompactOutcome_Succeeded(t *testing.T) {
|
|||||||
rec := httptest.NewRecorder()
|
rec := httptest.NewRecorder()
|
||||||
c, _ := gin.CreateTestContext(rec)
|
c, _ := gin.CreateTestContext(rec)
|
||||||
c.Request = httptest.NewRequest(http.MethodPost, "/v1/responses/compact", nil)
|
c.Request = httptest.NewRequest(http.MethodPost, "/v1/responses/compact", nil)
|
||||||
c.Request.Header.Set("User-Agent", "codex_cli_rs/0.104.0")
|
c.Request.Header.Set("User-Agent", "codex_cli_rs/0.125.0")
|
||||||
c.Set(opsModelKey, "gpt-5.3-codex")
|
c.Set(opsModelKey, "gpt-5.3-codex")
|
||||||
c.Set(opsAccountIDKey, int64(123))
|
c.Set(opsAccountIDKey, int64(123))
|
||||||
c.Header("x-request-id", "rid-compact-ok")
|
c.Header("x-request-id", "rid-compact-ok")
|
||||||
@ -142,7 +142,7 @@ func TestLogOpenAIRemoteCompactOutcome_Failed(t *testing.T) {
|
|||||||
rec := httptest.NewRecorder()
|
rec := httptest.NewRecorder()
|
||||||
c, _ := gin.CreateTestContext(rec)
|
c, _ := gin.CreateTestContext(rec)
|
||||||
c.Request = httptest.NewRequest(http.MethodPost, "/responses/compact", nil)
|
c.Request = httptest.NewRequest(http.MethodPost, "/responses/compact", nil)
|
||||||
c.Request.Header.Set("User-Agent", "codex_cli_rs/0.104.0")
|
c.Request.Header.Set("User-Agent", "codex_cli_rs/0.125.0")
|
||||||
c.Status(http.StatusBadGateway)
|
c.Status(http.StatusBadGateway)
|
||||||
|
|
||||||
h := &OpenAIGatewayHandler{}
|
h := &OpenAIGatewayHandler{}
|
||||||
@ -180,7 +180,7 @@ func TestOpenAIResponses_CompactUnauthorizedLogsFailed(t *testing.T) {
|
|||||||
c, _ := gin.CreateTestContext(rec)
|
c, _ := gin.CreateTestContext(rec)
|
||||||
c.Request = httptest.NewRequest(http.MethodPost, "/v1/responses/compact", strings.NewReader(`{"model":"gpt-5.3-codex"}`))
|
c.Request = httptest.NewRequest(http.MethodPost, "/v1/responses/compact", strings.NewReader(`{"model":"gpt-5.3-codex"}`))
|
||||||
c.Request.Header.Set("Content-Type", "application/json")
|
c.Request.Header.Set("Content-Type", "application/json")
|
||||||
c.Request.Header.Set("User-Agent", "codex_cli_rs/0.104.0")
|
c.Request.Header.Set("User-Agent", "codex_cli_rs/0.125.0")
|
||||||
|
|
||||||
h := &OpenAIGatewayHandler{}
|
h := &OpenAIGatewayHandler{}
|
||||||
h.Responses(c)
|
h.Responses(c)
|
||||||
|
|||||||
@ -110,7 +110,7 @@ const (
|
|||||||
apiQueryMaxJitter = 800 * time.Millisecond // 用量查询最大随机延迟
|
apiQueryMaxJitter = 800 * time.Millisecond // 用量查询最大随机延迟
|
||||||
windowStatsCacheTTL = 1 * time.Minute
|
windowStatsCacheTTL = 1 * time.Minute
|
||||||
openAIProbeCacheTTL = 10 * time.Minute
|
openAIProbeCacheTTL = 10 * time.Minute
|
||||||
openAICodexProbeVersion = "0.104.0"
|
openAICodexProbeVersion = "0.125.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
// UsageCache 封装账户使用量相关的缓存
|
// UsageCache 封装账户使用量相关的缓存
|
||||||
|
|||||||
@ -40,7 +40,7 @@ const (
|
|||||||
// OpenAI Platform API for API Key accounts (fallback)
|
// OpenAI Platform API for API Key accounts (fallback)
|
||||||
openaiPlatformAPIURL = "https://api.openai.com/v1/responses"
|
openaiPlatformAPIURL = "https://api.openai.com/v1/responses"
|
||||||
openaiStickySessionTTL = time.Hour // 粘性会话TTL
|
openaiStickySessionTTL = time.Hour // 粘性会话TTL
|
||||||
codexCLIUserAgent = "codex_cli_rs/0.104.0"
|
codexCLIUserAgent = "codex_cli_rs/0.125.0"
|
||||||
// codex_cli_only 拒绝时单个请求头日志长度上限(字符)
|
// codex_cli_only 拒绝时单个请求头日志长度上限(字符)
|
||||||
codexCLIOnlyHeaderValueMaxBytes = 256
|
codexCLIOnlyHeaderValueMaxBytes = 256
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ const (
|
|||||||
openAIWSRetryBackoffMaxDefault = 2 * time.Second
|
openAIWSRetryBackoffMaxDefault = 2 * time.Second
|
||||||
openAIWSRetryJitterRatioDefault = 0.2
|
openAIWSRetryJitterRatioDefault = 0.2
|
||||||
openAICompactSessionSeedKey = "openai_compact_session_seed"
|
openAICompactSessionSeedKey = "openai_compact_session_seed"
|
||||||
codexCLIVersion = "0.104.0"
|
codexCLIVersion = "0.125.0"
|
||||||
// Codex 限额快照仅用于后台展示/诊断,不需要每个成功请求都立即落库。
|
// Codex 限额快照仅用于后台展示/诊断,不需要每个成功请求都立即落库。
|
||||||
openAICodexSnapshotPersistMinInterval = 30 * time.Second
|
openAICodexSnapshotPersistMinInterval = 30 * time.Second
|
||||||
)
|
)
|
||||||
|
|||||||
@ -734,7 +734,7 @@ func TestOpenAIGatewayService_OAuthPassthrough_NonCodexUAFallbackToCodexUA(t *te
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Equal(t, false, gjson.GetBytes(upstream.lastBody, "store").Bool())
|
require.Equal(t, false, gjson.GetBytes(upstream.lastBody, "store").Bool())
|
||||||
require.Equal(t, true, gjson.GetBytes(upstream.lastBody, "stream").Bool())
|
require.Equal(t, true, gjson.GetBytes(upstream.lastBody, "stream").Bool())
|
||||||
require.Equal(t, "codex_cli_rs/0.104.0", upstream.lastReq.Header.Get("User-Agent"))
|
require.Equal(t, "codex_cli_rs/0.125.0", upstream.lastReq.Header.Get("User-Agent"))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestOpenAIGatewayService_CodexCLIOnly_RejectsNonCodexClient(t *testing.T) {
|
func TestOpenAIGatewayService_CodexCLIOnly_RejectsNonCodexClient(t *testing.T) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user