(
id: string,
modelReasoningEffort: string | null,
namespace: string,
options?: { touchUpdatedAt?: boolean }
)
| 69 | } |
| 70 | |
| 71 | setSessionModelReasoningEffort( |
| 72 | id: string, |
| 73 | modelReasoningEffort: string | null, |
| 74 | namespace: string, |
| 75 | options?: { touchUpdatedAt?: boolean } |
| 76 | ): boolean { |
| 77 | return setSessionModelReasoningEffort(this.db, id, modelReasoningEffort, namespace, options) |
| 78 | } |
| 79 | |
| 80 | setSessionEffort(id: string, effort: string | null, namespace: string, options?: { touchUpdatedAt?: boolean }): boolean { |
| 81 | return setSessionEffort(this.db, id, effort, namespace, options) |
no test coverage detected