openai_struct/models/fine_tune_completion_request_input.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/// pub FineTuneCompletionRequestInput : The per-line training example of a fine-tuning input file for completions models
12
13#[allow(unused_imports)]
14use serde_json::Value;
15
16#[derive(Debug, Serialize, Deserialize)]
17pub struct FineTuneCompletionRequestInput {
18 /// The desired completion for this training example.
19 #[serde(rename = "completion")]
20 pub completion: Option<String>,
21 /// The input prompt for this training example.
22 #[serde(rename = "prompt")]
23 pub prompt: Option<String>,
24}