Remove modelId from session metadata. Not needed, we grab it from the last assistantmessage.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user