From 95363a5b52f3bf73531ac76b00178fa79ca97661 Mon Sep 17 00:00:00 2001 From: Nate Sesti <33237525+sestinj@users.noreply.github.com> Date: Thu, 28 Sep 2023 01:02:52 -0700 Subject: Past input (#513) * feat: :construction: use ComboBox in place of UserInputContainer * feat: :construction: adding context to previous inputs steps * feat: :sparkles: preview context items on click * feat: :construction: more work on context items ui * style: :construction: working out the details of ctx item buttons * feat: :sparkles: getting the final details * fix: :bug: fix height of ctx items bar * fix: :bug: last couple of details * fix: :bug: pass model param through to hf inference api * fix: :loud_sound: better logging for timeout * feat: :sparkles: option to set the meilisearch url * fix: :bug: fix height of past inputs --- extension/schema/LLM.d.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'extension/schema/LLM.d.ts') diff --git a/extension/schema/LLM.d.ts b/extension/schema/LLM.d.ts index 31d38456..2c1ced29 100644 --- a/extension/schema/LLM.d.ts +++ b/extension/schema/LLM.d.ts @@ -42,6 +42,10 @@ export type VerifySsl = boolean; * Path to a custom CA bundle to use when making the HTTP request */ export type CaBundlePath = string; +/** + * Proxy URL to use when making the HTTP request + */ +export type Proxy = string; /** * The API key for the LLM provider. */ @@ -57,6 +61,7 @@ export interface LLM1 { timeout?: Timeout; verify_ssl?: VerifySsl; ca_bundle_path?: CaBundlePath; + proxy?: Proxy; prompt_templates?: PromptTemplates; api_key?: ApiKey; [k: string]: unknown; -- cgit v1.2.3-70-g09d2