5 lines
205 B
TypeScript
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;
|