Project Files
lib / config.d.ts
export declare const configSchematics: import("@lmstudio/sdk").ConfigSchematics<{
apiKey: {
key: "apiKey";
type: string;
valueTypeKey: "string";
};
} & {
requestDelaySeconds: {
key: "requestDelaySeconds";
type: number;
valueTypeKey: "numeric";
};
} & {
userAgent: {
key: "userAgent";
type: string;
valueTypeKey: "string";
};
} & {
maxRetries: {
key: "maxRetries";
type: number;
valueTypeKey: "numeric";
};
}>;
export type WebFetcherConfig = {
apiKey: string;
requestDelaySeconds: number;
userAgent: string;
maxRetries: number;
};
//# sourceMappingURL=config.d.ts.map