(m map[string]any, key string)
| 1304 | "tool_use_id": toolUseID, |
| 1305 | "content": extractToolResultText(block), |
| 1306 | "is_error": getBool(block, "is_error"), |
| 1307 | })) |
| 1308 | |
| 1309 | case "text": |
| 1310 | text := getString(block, "text") |
| 1311 | if isSystemHintText(text) { |
| 1312 | textParts = append(textParts, text) |
| 1313 | continue |
| 1314 | } |
| 1315 | return nil, false |
| 1316 | |
| 1317 | default: |
| 1318 | return nil, false |
no outgoing calls
no test coverage detected