mirror of
https://github.com/decolua/9router.git
synced 2026-05-08 12:01:28 +00:00
13 lines
264 B
JavaScript
13 lines
264 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"
|
|
};
|
|
|