summaryrefslogtreecommitdiff
path: root/extension/schema/Models.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'extension/schema/Models.d.ts')
-rw-r--r--extension/schema/Models.d.ts13
1 files changed, 8 insertions, 5 deletions
diff --git a/extension/schema/Models.d.ts b/extension/schema/Models.d.ts
index 9005c08c..67d73cfc 100644
--- a/extension/schema/Models.d.ts
+++ b/extension/schema/Models.d.ts
@@ -43,22 +43,24 @@ export type VerifySsl = boolean;
*/
export type CaBundlePath = string;
/**
+ * Proxy URL to use when making the HTTP request
+ */
+export type Proxy = string;
+/**
* The API key for the LLM provider.
*/
export type ApiKey = string;
-export type Unused = LLM[];
+export type Saved = LLM[];
/**
* Main class that holds the current model configuration
*/
export interface Models1 {
default: LLM;
- small?: LLM;
- medium?: LLM;
- large?: LLM;
+ summarize?: LLM;
edit?: LLM;
chat?: LLM;
- unused?: Unused;
+ saved?: Saved;
sdk?: ContinueSDK;
[k: string]: unknown;
}
@@ -72,6 +74,7 @@ export interface LLM {
timeout?: Timeout;
verify_ssl?: VerifySsl;
ca_bundle_path?: CaBundlePath;
+ proxy?: Proxy;
prompt_templates?: PromptTemplates;
api_key?: ApiKey;
[k: string]: unknown;