openai_agents_rust/results.rs
1/// Structured run result aligning with Python's RunResult basics.
2#[derive(Debug, Clone, Default)]
3pub struct RunResult {
4 pub id: Option<String>,
5 pub text: Option<String>,
6 /// Optional summaries of tool calls executed during the run: (name, output JSON or text)
7 pub tool_outputs: Vec<(String, String)>,
8}