MCPcopy
hub / github.com/j4wg/interview-coder-withoupaywall-opensource / Config

Interface Config

electron/ConfigHelper.ts:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import { OpenAI } from "openai"
7
8interface Config {
9 apiKey: string;
10 apiProvider: "openai" | "gemini"; // Added provider selection
11 extractionModel: string;
12 solutionModel: string;
13 debuggingModel: string;
14 language: string;
15 opacity: number;
16}
17
18export class ConfigHelper extends EventEmitter {
19 private configPath: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected