wip
This commit is contained in:
parent
8e8484f875
commit
4fb1550e7d
8 changed files with 2412 additions and 4 deletions
|
|
@ -1,5 +1,10 @@
|
|||
import type { OnlineProvider } from "./providers.js";
|
||||
|
||||
export type LlmProvider = "local" | OnlineProvider;
|
||||
|
||||
// Runtime-populated by pipeline.ts after CLI initialization
|
||||
export const LLM_CONFIG = {
|
||||
provider: "local" as "local" | "openrouter" | "deepseek" | "gemini",
|
||||
provider: "local" as LlmProvider,
|
||||
url: "http://127.0.0.1:8080/v1/chat/completions",
|
||||
model: undefined as string | undefined,
|
||||
} as const;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue