(t: &str)
| 334 | |
| 335 | impl VertexPart { |
| 336 | fn text(t: &str) -> Self { |
| 337 | Self { |
| 338 | text: Some(t.to_string()), |
| 339 | function_call: None, |
| 340 | function_response: None, |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | fn function_call(name: &str, args: serde_json::Value) -> Self { |
| 345 | Self { |
no outgoing calls
no test coverage detected