oaapi 0.2.0

An unofficial Rust client for the OpenAI API.
Documentation
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
use serde::{Deserialize, Serialize};
use std::fmt::Display;

use crate::chat::Role;
use crate::macros::impl_enum_struct_serialization;
use crate::macros::impl_enum_with_string_or_array_serialization;
use crate::macros::{
    impl_display_for_serialize, impl_enum_string_serialization,
};
use crate::{ValidationError, ValidationResult};

/// The user message.
#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
pub struct UserMessage {
    /// The contents of the user message.
    pub content: MessageContent,
    /// The role of the messages author, in this case user.
    pub role: Role,
    /// An optional name for the participant.
    /// Provides the model information to differentiate between participants of the same role.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
}

impl Default for UserMessage {
    fn default() -> Self {
        Self {
            content: MessageContent::Text("".to_string()),
            role: Role::User,
            name: None,
        }
    }
}

impl_display_for_serialize!(UserMessage);

impl UserMessage {
    pub fn new(
        content: MessageContent,
        name: Option<String>,
    ) -> Self {
        Self {
            content,
            role: Role::User,
            name,
        }
    }
}

/// The content of a user message.
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum MessageContent {
    /// The text contents of the message.
    Text(String),
    /// An array of content parts with a defined type, each can be of type text or image_url when passing in images.
    /// You can pass multiple images by adding multiple image_url content parts.
    /// Image input is only supported when using the gpt-4-visual-preview model.
    Array(Vec<MessageContentPart>),
}

impl Default for MessageContent {
    fn default() -> Self {
        Self::Text(String::new())
    }
}

impl From<&str> for MessageContent {
    fn from(text: &str) -> Self {
        Self::Text(text.to_string())
    }
}

impl_display_for_serialize!(MessageContent);

impl_enum_with_string_or_array_serialization!(
    MessageContent,
    Text(String),
    Array(MessageContentPart)
);

/// The content part of a message.
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum MessageContentPart {
    /// Text content part.
    Text(TextContentPart),
    /// Image content part.
    Image(ImageContentPart),
}

impl Default for MessageContentPart {
    fn default() -> Self {
        Self::Text(TextContentPart::new(String::new()))
    }
}

impl_display_for_serialize!(MessageContentPart);

impl_enum_struct_serialization!(
    MessageContentPart,
    type,
    Text(TextContentPart, "text"),
    Image(ImageContentPart, "image_url")
);

/// The text content part of a message.
#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
pub struct TextContentPart {
    /// The type of the content part, in this case `text`.
    #[serde(rename = "type")]
    pub _type: String,
    /// The text content.
    pub text: String,
}

impl Default for TextContentPart {
    fn default() -> Self {
        Self {
            _type: "text".to_string(),
            text: String::new(),
        }
    }
}

impl_display_for_serialize!(TextContentPart);

impl TextContentPart {
    pub fn new<S>(text: S) -> Self
    where
        S: Into<String>,
    {
        Self {
            _type: "text".to_string(),
            text: text.into(),
        }
    }
}

/// The image content part of a message.
#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
pub struct ImageContentPart {
    /// The type of the content part, in this case `image_url`.
    #[serde(rename = "type")]
    pub _type: String,
    /// The image url.
    pub image_url: ImageUrl,
}

impl Default for ImageContentPart {
    fn default() -> Self {
        Self {
            _type: "image_url".to_string(),
            image_url: ImageUrl {
                url: String::new(),
                detail: None,
            },
        }
    }
}

impl_display_for_serialize!(ImageContentPart);

impl ImageContentPart {
    pub fn new(image_url: ImageUrl) -> Self {
        Self {
            _type: "image_url".to_string(),
            image_url,
        }
    }
}

/// The image URL of a message content part.
#[derive(Debug, Clone, Eq, PartialEq, Default, Serialize, Deserialize)]
pub struct ImageUrl {
    /// The URL of the image.
    pub url: String,
    /// The detail of the image.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub detail: Option<ImageDetail>,
}

impl_display_for_serialize!(ImageUrl);

impl ImageUrl {
    /// Specify full URL.
    pub fn url(
        url: String,
        detail: Option<ImageDetail>,
    ) -> Self {
        Self {
            url,
            detail,
        }
    }

    /// Upload a Base64 encoded image.
    pub fn upload_base64(
        base64: String,
        format: ImageFormat,
        detail: Option<ImageDetail>,
    ) -> Self {
        let url = format!(
            "data:image/{};base64,{}",
            format.to_string(),
            base64
        );

        Self {
            url,
            detail,
        }
    }
}

/// The image format.
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub enum ImageFormat {
    /// PNG.
    Png,
    /// JPEG.
    Jpeg,
    /// WEBP
    Webp,
    /// Non-animated GIF
    Gif,
}

impl Default for ImageFormat {
    fn default() -> Self {
        ImageFormat::Png
    }
}

impl Display for ImageFormat {
    fn fmt(
        &self,
        f: &mut std::fmt::Formatter<'_>,
    ) -> std::fmt::Result {
        match self {
            | ImageFormat::Png => {
                write!(f, "png")
            },
            | ImageFormat::Jpeg => {
                write!(f, "jpeg")
            },
            | ImageFormat::Webp => {
                write!(f, "webp")
            },
            | ImageFormat::Gif => {
                write!(f, "gif")
            },
        }
    }
}

impl ImageFormat {
    pub fn from_path(
        path: std::path::PathBuf
    ) -> ValidationResult<Self, String> {
        let extension = path
            .extension()
            .ok_or_else(|| ValidationError {
                type_name: "ImageFormat".to_string(),
                reason: "Extension is not found".to_string(),
                value: path
                    .to_string_lossy()
                    .to_string(),
            })?
            .to_str()
            .ok_or_else(|| ValidationError {
                type_name: "ImageFormat".to_string(),
                reason: "Extension is not found".to_string(),
                value: path
                    .to_string_lossy()
                    .to_string(),
            })?;

        match extension {
            | "png" => Ok(ImageFormat::Png),
            | "jpg" | "jpeg" => Ok(ImageFormat::Jpeg),
            | "webp" => Ok(ImageFormat::Webp),
            | "gif" => Ok(ImageFormat::Gif),
            | _ => Err(ValidationError {
                type_name: "ImageFormat".to_string(),
                reason: "Not supported extension".to_string(),
                value: extension.to_string(),
            }),
        }
    }
}

/// The image detail to control over how the model processes the image and generates its textual understanding.
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub enum ImageDetail {
    /// `auto`
    Auto,
    /// `low`, disable the “high res” model.
    Low,
    /// `High`, enable the “high res” model.
    High,
}

impl Default for ImageDetail {
    fn default() -> Self {
        ImageDetail::Auto
    }
}

impl_display_for_serialize!(ImageDetail);

impl_enum_string_serialization!(
    ImageDetail,
    Auto => "auto",
    Low => "low",
    High => "high"
);

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn deserialize_user_message() {
        let json = r#"{
            "content": "Hello, how are you?",
            "role": "user",
            "name": "John"
        }"#;
        let message: UserMessage = serde_json::from_str(json).unwrap();
        assert_eq!(
            message,
            UserMessage {
                content: MessageContent::Text(
                    "Hello, how are you?".to_string()
                ),
                role: Role::User,
                name: Some("John".to_string()),
            }
        );
    }

    #[test]
    fn deserialize_user_message_without_optional() {
        let json = r#"{
            "content": "Hello, how are you?",
            "role": "user"
        }"#;
        let message: UserMessage = serde_json::from_str(json).unwrap();
        assert_eq!(
            message,
            UserMessage {
                content: MessageContent::Text(
                    "Hello, how are you?".to_string()
                ),
                role: Role::User,
                name: None,
            }
        );
    }

    #[test]
    fn serialize_user_message() {
        let message = UserMessage {
            content: MessageContent::Text("Hello, how are you?".to_string()),
            role: Role::User,
            name: Some("John".to_string()),
        };
        let json = serde_json::to_string(&message).unwrap();
        assert_eq!(
            json,
            r#"{"content":"Hello, how are you?","role":"user","name":"John"}"#,
        );
    }

    #[test]
    fn serialize_user_message_without_optional() {
        let message = UserMessage {
            content: MessageContent::Text("Hello, how are you?".to_string()),
            role: Role::User,
            name: None,
        };
        let json = serde_json::to_string(&message).unwrap();
        assert_eq!(
            json,
            r#"{"content":"Hello, how are you?","role":"user"}"#,
        );
    }

    #[test]
    fn deserialize_user_message_with_image_content_part() {
        let json = r#"{
            "content": [
                {
                    "type": "text",
                    "text": "Hello, how are you?"
                },
                {
                    "type": "image_url",
                    "image_url": {
                        "url": "https://images.unsplash.com/photo-1622839418057-8e9e6b6b0b0f",
                        "detail": "auto"
                    }
                }
            ],
            "role": "user",
            "name": "John"
        }"#;
        let message: UserMessage = serde_json::from_str(json).unwrap();
        assert_eq!(
            message,
            UserMessage {
                content: MessageContent::Array(vec![
                    MessageContentPart::Text(TextContentPart::new(
                        "Hello, how are you?".to_string()
                    )),
                    MessageContentPart::Image(ImageContentPart::new(
                        ImageUrl::url(
                            "https://images.unsplash.com/photo-1622839418057-8e9e6b6b0b0f".to_string(),
                            Some(ImageDetail::Auto),
                        ),
                    )),
                ]),
                role: Role::User,
                name: Some("John".to_string()),
            }
        );
    }

    #[test]
    fn serialize_user_message_with_image_content_part() {
        let message = UserMessage {
            content: MessageContent::Array(vec![
                MessageContentPart::Text(TextContentPart::new(
                    "Hello, how are you?".to_string()
                )),
                MessageContentPart::Image(ImageContentPart::new(
                    ImageUrl::url(
                        "https://images.unsplash.com/photo-1622839418057-8e9e6b6b0b0f".to_string(),
                        Some(ImageDetail::Auto),
                    ),
                )),
            ]),
            role: Role::User,
            name: Some("John".to_string()),
        };
        let json = serde_json::to_string(&message).unwrap();
        assert_eq!(
            json,
            r#"{"content":[{"type":"text","text":"Hello, how are you?"},{"type":"image_url","image_url":{"url":"https://images.unsplash.com/photo-1622839418057-8e9e6b6b0b0f","detail":"auto"}}],"role":"user","name":"John"}"#,
        );
    }
}