MCPcopy
hub / github.com/ValueCell-ai/ClawX / ProviderConfig

Interface ProviderConfig

electron/shared/providers/types.ts:109–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107 | 'custom';
108
109export interface ProviderConfig {
110 id: string;
111 name: string;
112 type: ProviderType;
113 baseUrl?: string;
114 apiProtocol?: ProviderProtocol;
115 headers?: Record<string, string>;
116 model?: string;
117 fallbackModels?: string[];
118 fallbackProviderIds?: string[];
119 enabled: boolean;
120 createdAt: string;
121 updatedAt: string;
122}
123
124export interface ProviderWithKeyInfo extends ProviderConfig {
125 hasKey: boolean;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected