Remove modelId from session metadata. Not needed, we grab it from the last assistantmessage.

This commit is contained in:
Mario Zechner 2025-10-29 20:37:24 +01:00
parent 129ec6063b
commit 1726c1e3af
2 changed files with 0 additions and 4 deletions

View file

@ -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: "",
};

View file

@ -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;