feat: 将 ofcx-go backend 收敛为 dsflash-go

This commit is contained in:
Codex
2026-06-08 01:38:50 +08:00
parent eef59c74ee
commit 41886aef80
14 changed files with 115 additions and 36 deletions
+3 -3
View File
@@ -51,16 +51,16 @@ export const backendProfileSpecs: readonly BackendProfileSpec[] = [
description: "MiniMax M3 OpenAI-compatible profile through Codex app-server stdio",
},
{
profile: "ofcx-go",
profile: "dsflash-go",
backendKind: "codex-app-server-stdio",
protocol: "codex-app-server-jsonrpc-stdio",
transport: "stdio",
command: "codex app-server --listen stdio://",
status: "registered",
requiredSecretKeys: ["auth.json", "config.toml"],
defaultSecretName: "agentrun-v01-provider-ofcx-go",
defaultSecretName: "agentrun-v01-provider-dsflash-go",
profileIsolation: "profile-scoped-codex-home",
description: "OpenCode Zen Go DeepSeek V4 Flash profile through Moon Bridge",
description: "DeepSeek V4 Flash profile through OpenCode Zen Go Moon Bridge",
},
];
+1 -1
View File
@@ -28,7 +28,7 @@ export type FailureKind =
export type RunStatus = "pending" | "claimed" | "running" | "completed" | "failed" | "blocked" | "cancelled";
export type CommandState = "pending" | "acknowledged" | "completed" | "failed" | "cancelled";
export type TerminalStatus = "completed" | "failed" | "blocked" | "cancelled";
export type BackendProfile = "codex" | "deepseek" | "minimax-m3" | "ofcx-go";
export type BackendProfile = "codex" | "deepseek" | "minimax-m3" | "dsflash-go";
export type QueueTaskState = "pending" | "running" | "completed" | "failed" | "blocked" | "cancelled";
export type SessionExecutionState = "idle" | "running" | "terminal";
export type SessionAttentionState = "active" | "unread" | "read";