fix(coding-agent): preserve session thinking for scoped model cycling

closes #1789
This commit is contained in:
Mario Zechner
2026-03-04 19:51:55 +01:00
parent 4cb1a56b53
commit e64cd15c25
6 changed files with 22 additions and 17 deletions

View File

@@ -23,7 +23,7 @@ interface ModelItem {
interface ScopedModelItem {
model: Model<any>;
thinkingLevel: string;
thinkingLevel?: string;
}
type ModelScope = "all" | "scoped";