mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:30:42 +00:00
13 lines
411 B
TypeScript
13 lines
411 B
TypeScript
import type { DoctorSessionRouteStateOwner } from "openclaw/plugin-sdk/runtime-doctor";
|
|
|
|
export const sessionRouteStateOwners: DoctorSessionRouteStateOwner[] = [
|
|
{
|
|
id: "codex",
|
|
label: "Codex",
|
|
providerIds: ["codex", "codex-cli", "openai-codex"],
|
|
runtimeIds: ["codex", "codex-cli"],
|
|
cliSessionKeys: ["codex-cli"],
|
|
authProfilePrefixes: ["codex:", "codex-cli:", "openai-codex:"],
|
|
},
|
|
];
|