lila/data-pipeline/config/llm.ts
2026-07-06 13:09:30 +02:00

5 lines
205 B
TypeScript

export const LLM_CONFIG = {
provider: "local" as "local" | "openrouter" | "deepseek" | "gemini",
url: "http://127.0.0.1:8080/v1/chat/completions",
model: undefined as string | undefined,
} as const;