feat(claude): add effort setting parity with model across stack (#353)

Co-authored-by: Xiaoyi <xiaoyizhang@microsoft.com>
This commit is contained in:
xyzhang626
2026-03-24 21:15:48 +08:00
committed by GitHub
co-authored by Xiaoyi
parent 30265fdc25
commit a200fe9628
50 changed files with 715 additions and 52 deletions
+3 -1
View File
@@ -19,6 +19,7 @@ export type SessionSummary = {
todoProgress: { completed: number; total: number } | null
pendingRequestsCount: number
model: string | null
effort: string | null
}
export function toSessionSummary(session: Session): SessionSummary {
@@ -47,6 +48,7 @@ export function toSessionSummary(session: Session): SessionSummary {
metadata,
todoProgress,
pendingRequestsCount,
model: session.model
model: session.model,
effort: session.effort
}
}