summaryrefslogtreecommitdiffhomepage
path: root/packages/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/core/src')
-rw-r--r--packages/core/src/types/index.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/core/src/types/index.ts b/packages/core/src/types/index.ts
index bf312ae..8745bc7 100644
--- a/packages/core/src/types/index.ts
+++ b/packages/core/src/types/index.ts
@@ -40,7 +40,13 @@ export type AgentEvent =
| { type: "done"; message: ChatMessage }
| { type: "task-list-update"; tasks: TaskItem[] }
| { type: "config-reload" }
- | { type: "tab-created"; id: string; title: string };
+ | {
+ type: "tab-created";
+ id: string;
+ title: string;
+ keyId: string | null;
+ modelId: string | null;
+ };
// ─── Tool Types ──────────────────────────────────────────────────