(content)
| 132 | useTools: false, |
| 133 | |
| 134 | parseResponse(content) { |
| 135 | const updatesStr = extractTag(content, 'updates') |
| 136 | if (!updatesStr) { |
| 137 | return [] |
| 138 | } |
| 139 | try { |
| 140 | return jsonParse(updatesStr) as SkillUpdate[] |
| 141 | } catch { |
| 142 | return [] |
| 143 | } |
| 144 | }, |
| 145 | |
| 146 | logResult(result, context) { |
| 147 | if (result.type === 'success' && result.result.length > 0) { |
nothing calls this directly
no test coverage detected