1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! OpenAI Models API Response Types
//!
//! This module defines the response structures for the OpenAI Models API.
use ;
/// Response structure for listing all available models.
///
/// Contains a list of model objects that are currently available.
/// Represents an OpenAI model.
///
/// Contains basic information about a model including its ID, creation time,
/// and ownership details.
/// Response structure for model deletion.
///
/// Returned when a fine-tuned model is successfully deleted.