Set response ID
(mut self, id: String)
| 63 | |
| 64 | /// Set response ID |
| 65 | pub fn with_id(mut self, id: String) -> Self { |
| 66 | self.id = Some(id); |
| 67 | self |
| 68 | } |
| 69 | |
| 70 | /// Check if the response contains tool calls |
| 71 | pub fn has_tool_calls(&self) -> bool { |
no outgoing calls
no test coverage detected