openai_struct/models/
create_eval_logs_data_source_config.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 CreateEvalLogsDataSourceConfig : A data source config which specifies the metadata property of your stored completions query. This is usually metadata like `usecase=chatbot` or `prompt-version=v2`, etc.
12
13#[allow(unused_imports)]
14use serde_json::Value;
15
16// #[derive(Debug, Serialize, Deserialize)]
17// pub struct CreateEvalLogsDataSourceConfig {
18//   /// Metadata filters for the logs data source.
19//   #[serde(rename = "metadata")]
20//   pub metadata: Option<::std::collections::HashMap<String, pub crate::models::Object>>,
21//   /// The type of data source. Always `logs`.
22//   #[serde(rename = "type")]
23//   pub _type: String
24// }