openai_struct/models/eval_run_output_item_sample_output.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 EvalRunOutputItemSampleOutput {
16 /// The content of the message.
17 #[serde(rename = "content")]
18 pub content: Option<String>,
19 /// The role of the message (e.g. \"system\", \"assistant\", \"user\").
20 #[serde(rename = "role")]
21 pub role: Option<String>,
22}