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
46
47
48
49
50
51
52
53
54
55
use crate::ChatMessage;

/// The response for a completion request
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct CompletionResponse {
    /// The id of the response
    pub id: Box<str>,

    /// ?
    pub object: Box<str>,

    /// ?
    pub created: u64,

    /// The used model
    pub model: Box<str>,

    /// ?
    pub choices: Vec<CompletionResponseChoice>,
    // pub usage:
}

/// A completion response choice
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct CompletionResponseChoice {
    /// The text response?
    pub text: Box<str>,
    // pub index:
}

/// A chat completion response
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct ChatCompletionResponse {
    /// id of completion?
    pub id: Box<str>,

    /// ?
    pub object: Box<str>,

    /// ?
    pub created: u64,

    /// ?
    pub choices: Vec<ChatCompletionResponseChoice>,
    //pub usage
}

/// A chat completion response choice
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct ChatCompletionResponseChoice {
    // pub index
    /// The message
    pub message: ChatMessage,
    // finish_reason
}