openai-struct 0.0.4

利用openai的openapi生成的rust结构体
Documentation
/*
 * OpenAI API
 *
 * The OpenAI REST API. Please see pub https:///platform.openai.com/docs/api-reference for more details.
 *
 * OpenAPI spec pub version: 2.3.0
 *
 * Generated pub by: https:///github.com/swagger-api/swagger-codegen.git
 */

#[allow(unused_imports)]
use serde_json::Value;

/// on openapi.yaml
///
/// ```yaml
/// ModelIdsShared:
///   example: gpt-4o
///   anyOf:
///     - type: string
///     - type: string
///       enum:
///         - gpt-4.1
///         - gpt-4.1-mini
///         - gpt-4.1-nano
///         - gpt-4.1-2025-04-14
///         - gpt-4.1-mini-2025-04-14
///         - gpt-4.1-nano-2025-04-14
///         - o4-mini
///         - o4-mini-2025-04-16
///         - o3
///         - o3-2025-04-16
///         - o3-mini
///         - o3-mini-2025-01-31
///         - o1
///         - o1-2024-12-17
///         - o1-preview
///         - o1-preview-2024-09-12
///         - o1-mini
///         - o1-mini-2024-09-12
///         - gpt-4o
///         - gpt-4o-2024-11-20
///         - gpt-4o-2024-08-06
///         - gpt-4o-2024-05-13
///         - gpt-4o-audio-preview
///         - gpt-4o-audio-preview-2024-10-01
///         - gpt-4o-audio-preview-2024-12-17
///         - gpt-4o-mini-audio-preview
///         - gpt-4o-mini-audio-preview-2024-12-17
///         - gpt-4o-search-preview
///         - gpt-4o-mini-search-preview
///         - gpt-4o-search-preview-2025-03-11
///         - gpt-4o-mini-search-preview-2025-03-11
///         - chatgpt-4o-latest
///         - gpt-4o-mini
///         - gpt-4o-mini-2024-07-18
///         - gpt-4-turbo
///         - gpt-4-turbo-2024-04-09
///         - gpt-4-0125-preview
///         - gpt-4-turbo-preview
///         - gpt-4-1106-preview
///         - gpt-4-vision-preview
///         - gpt-4
///         - gpt-4-0314
///         - gpt-4-0613
///         - gpt-4-32k
///         - gpt-4-32k-0314
///         - gpt-4-32k-0613
///         - gpt-3.5-turbo
///         - gpt-3.5-turbo-16k
///         - gpt-3.5-turbo-0301
///         - gpt-3.5-turbo-0613
///         - gpt-3.5-turbo-1106
///         - gpt-3.5-turbo-0125
///         - gpt-3.5-turbo-16k-0613
/// ```
pub type ModelIdsShared = crate::AssistantSupportedModels;