Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/bridge-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export type ParkedBridge = {
pendingTools: Map<string, ParkedToolCall>;
/** SDK assistant messages whose usage was already reported to OpenCode. */
seenAssistantUsageIds: Set<string>;
/** Model the user was last told is answering (init model, then fallback target). */
announcedModel?: string | null;
/** Model OpenCode asked for on this turn. */
requestedModel?: string | null;
createdAt: number;
/** Continues consuming the SDK stream after tools resolve. */
continueStream?: () => AsyncGenerator<unknown, void, unknown>;
Expand Down
Loading