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
//! # OpenModex SDK for Rust
//!
//! Official Rust SDK for the [OpenModex API](https://docs.openmodex.com).
//!
//! OpenModex is a unified API gateway for accessing multiple LLM providers
//! through a single OpenAI-compatible interface.
//!
//! ## Quick Start
//!
//! ```no_run
//! use openmodex::{OpenModex, ChatCompletionRequest, ChatMessage, Error};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Error> {
//! let client = OpenModex::new("omx_sk_...")?;
//!
//! let response = client.chat().completions().create(
//! ChatCompletionRequest::new("gpt-4o")
//! .message(ChatMessage::user("Hello!"))
//! .temperature(0.7)
//! ).await?;
//!
//! println!("{}", response.choices[0].message.as_ref()
//! .and_then(|m| m.content.as_deref())
//! .unwrap_or(""));
//!
//! Ok(())
//! }
//! ```
//!
//! ## Streaming
//!
//! ```no_run
//! use openmodex::{OpenModex, ChatCompletionRequest, ChatMessage, Error};
//! use futures::StreamExt;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Error> {
//! let client = OpenModex::new("omx_sk_...")?;
//!
//! let mut stream = client.chat().completions().create_stream(
//! ChatCompletionRequest::new("gpt-4o")
//! .message(ChatMessage::user("Tell me a story"))
//! ).await?;
//!
//! while let Some(chunk) = stream.next().await {
//! let chunk = chunk?;
//! if let Some(content) = chunk.choices.first()
//! .and_then(|c| c.delta.content.as_ref())
//! {
//! print!("{content}");
//! }
//! }
//!
//! Ok(())
//! }
//! ```
// Re-export the primary client type.
pub use ;
// Re-export error types.
pub use ;
// Re-export all domain types.
pub use ;
// Re-export the streaming type.
pub use ChatCompletionStream;
// Re-export service types for documentation.
pub use ;
pub use CompletionService;
pub use EmbeddingService;
pub use ModelService;