summaryrefslogtreecommitdiff
path: root/src/types
diff options
context:
space:
mode:
Diffstat (limited to 'src/types')
-rw-r--r--src/types/index.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/types/index.ts b/src/types/index.ts
index 1e4d57d..f6df6bf 100644
--- a/src/types/index.ts
+++ b/src/types/index.ts
@@ -40,4 +40,11 @@ export type LLMChoice =
| { grok: string }
| { deepseek: string }
| { kimi: string }
- | { openai: { url: string; apiKey: string; model: string } };
+ | {
+ openai: {
+ url: string;
+ apiKey: string;
+ model: string;
+ allowBrowser?: boolean;
+ };
+ };