14 lines
300 B
JavaScript
14 lines
300 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",
|
|
CURSOR: "cursor"
|
|
};
|
|
|