mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
// Format identifiers
|
|
export const FORMATS = {
|
|
OPENAI: "openai",
|
|
OPENAI_RESPONSES: "openai-responses",
|
|
OPENAI_RESPONSE: "openai-response",
|
|
CLAUDE: "claude",
|
|
GEMINI: "gemini",
|
|
GEMINI_CLI: "gemini-cli",
|
|
CODEX: "codex",
|
|
ANTIGRAVITY: "antigravity",
|
|
KIRO: "kiro"
|
|
};
|
|
|