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
//! API organization module.
//!
//! Provides a clean, organized public API surface that groups related functionality.
//! Re-exports generated Protocol Buffer types in a logical structure matching xAI API organization.
//!
//! # Structure
//!
//! ## Standard API
//! Core xAI API types for AI services:
//! - **Chat**: [`GetCompletionsRequest`], [`GetChatCompletionResponse`], [`Message`], etc.
//! - **Embeddings**: [`EmbedRequest`], [`EmbedResponse`], embedding types
//! - **Images**: [`GenerateImageRequest`], [`GenerateImageResponse`], image types
//! - **Models**: [`ListLanguageModelsRequest`], model information types
//! - **Sample**: [`SampleTextRequest`], text generation types
//! - **Tokenize**: [`TokenizeRequest`], tokenization types
//! - **Documents**: [`SearchDocumentsRequest`], document search types
//! - **Auth**: [`GetApiKeyInfoRequest`], authentication types
//!
//! ## Management API
//! Team and account management APIs in [`management`] module:
//! - **Billing**: Billing service types in [`management::billing`]
//! - Payment methods, invoices, spending limits, prepaid credits
//! - Usage analytics and billing information
// Standard API
pub use crate*;
// Management API