(mut self, tool_calls: Vec<LlmToolCall>)
| 205 | /// Add tool calls to the message |
| 206 | #[inline] |
| 207 | pub fn with_tool_calls(mut self, tool_calls: Vec<LlmToolCall>) -> Self { |
| 208 | self.tool_calls = tool_calls; |
| 209 | self |
| 210 | } |
| 211 | |
| 212 | /// Get content length for performance estimation |
| 213 | #[inline] |
no outgoing calls