summaryrefslogtreecommitdiff
path: root/src/types
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-10-19 10:30:47 +0700
committerpolwex <polwex@sortug.com>2025-10-19 10:30:47 +0700
commitba16ebcbe36c1a1cbdb1d1379cb3f9c3a086acdf (patch)
tree7ba1f8bb59d0f25d1c6539865f82d8a4e0dbe4f8 /src/types
parenta23f430e2afd7d9ea462f71c2fd1568d8e1dba38 (diff)
checkpoint
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;
+ };
+ };