We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0264945 commit 3d1c4cbCopy full SHA for 3d1c4cb
async-openai/src/types.rs
@@ -8,13 +8,6 @@ use serde::{Deserialize, Serialize};
8
9
use crate::{download::download_url, error::OpenAIError};
10
11
-pub struct Engine {
12
- pub id: String,
13
- pub object: String,
14
- pub created: u32, // nullable: true
15
- pub ready: bool,
16
-}
17
-
18
#[derive(Debug, Deserialize)]
19
pub struct Model {
20
pub id: String,
@@ -57,11 +50,6 @@ pub struct FineTuneEvent {
57
50
pub message: String,
58
51
}
59
52
60
-pub struct ListEnginesResponse {
61
62
- pub data: Vec<Engine>,
63
64
65
53
66
54
pub struct ListModelResponse {
67
55
pub object: String,
0 commit comments