mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 22:03:45 +00:00
Remove modelId from session metadata. Not needed, we grab it from the last assistantmessage.
This commit is contained in:
parent
129ec6063b
commit
1726c1e3af
2 changed files with 0 additions and 4 deletions
|
|
@ -103,7 +103,6 @@ export class SessionsStore extends Store {
|
|||
cacheWrite: 0,
|
||||
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0, total: 0 },
|
||||
},
|
||||
modelId: state.model?.id || null,
|
||||
thinkingLevel: state.thinkingLevel || "off",
|
||||
preview: "",
|
||||
};
|
||||
|
|
|
|||
|
|
@ -128,9 +128,6 @@ export interface SessionMetadata {
|
|||
};
|
||||
};
|
||||
|
||||
/** Last used model ID (e.g., "claude-sonnet-4") */
|
||||
modelId: string | null;
|
||||
|
||||
/** Last used thinking level */
|
||||
thinkingLevel: ThinkingLevel;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue