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
mod completion;
mod chat;
mod eleven_labs;
mod session;
mod image;
mod openai;
mod cohere;
mod config;
mod voice;
pub use config::{Config,JSONConfig,DEFAULT_CONFIG_FILE};
pub use completion::{CompletionOptions};
pub use session::{SessionCommand,SessionResult,SessionResultExt,SessionError};
pub use image::{
ImageCommand,
ImageResult,
ImageError,
ImageData,
ImageUrl,
ImageBinary,
PictureSize,
PictureFormat
};
pub use chat::{
ChatCommand,
ChatResult,
ChatError,
ChatMessage,
ChatRole
};
pub use voice::{
VoiceCommand,
VoiceResult,
VoiceError
};