openai_struct/models/submit_tool_outputs_run_request_tool_outputs.rs
1/*
2 * OpenAI API
3 *
4 * The OpenAI REST API. Please see pub https://platform.openai.com/docs/api-reference for more details.
5 *
6 * OpenAPI spec pub version: 2.3.0
7 *
8 * Generated pub by: https://github.com/swagger-api/swagger-codegen.git
9 */
10
11#[allow(unused_imports)]
12use serde_json::Value;
13
14#[derive(Debug, Serialize, Deserialize)]
15pub struct SubmitToolOutputsRunRequestToolOutputs {
16 /// The output of the tool call to be submitted to continue the run.
17 #[serde(rename = "output")]
18 pub output: Option<String>,
19 /// The ID of the tool call in the `required_action` object within the run object the output is being submitted for.
20 #[serde(rename = "tool_call_id")]
21 pub tool_call_id: Option<String>,
22}