(result: &TaskResult)
| 153 | } |
| 154 | |
| 155 | fn task_artifact_uri(result: &TaskResult) -> String { |
| 156 | format!( |
| 157 | "a3s://tasks/{}/runs/{}/output", |
| 158 | result.session_id, result.task_id |
| 159 | ) |
| 160 | } |
| 161 | |
| 162 | fn format_task_result_for_context(result: &TaskResult) -> (String, bool) { |
| 163 | let (output, truncated) = compact_task_output(&result.output); |
no outgoing calls
no test coverage detected