({
questions,
answers = {},
annotations
}, _context)
| 207 | return null; |
| 208 | }, |
| 209 | async call({ |
| 210 | questions, |
| 211 | answers = {}, |
| 212 | annotations |
| 213 | }, _context) { |
| 214 | return { |
| 215 | data: { |
| 216 | questions, |
| 217 | answers, |
| 218 | ...(annotations && { |
| 219 | annotations |
| 220 | }) |
| 221 | } |
| 222 | }; |
| 223 | }, |
| 224 | mapToolResultToToolResultBlockParam({ |
| 225 | answers, |
| 226 | annotations |
nothing calls this directly
no outgoing calls
no test coverage detected