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
// Copyright (c) 2026 vectorless developers
// SPDX-License-Identifier: Apache-2.0
//! Unified LLM client module.
//!
//! This module provides a unified interface for all LLM operations across the codebase:
//! - **Index** — Document indexing and summarization
//! - **Retrieval** — Document tree navigation
//! - **Pilot** — Navigation guidance
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ LlmPool │
//! │ │
//! │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
//! │ │ index │ │ retrieval │ │ pilot │ │
//! │ │ LlmClient │ │ LlmClient │ │ LlmClient │ │
//! │ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
//! │ │ │ │ │
//! │ └────────────────┼────────────────┘ │
//! │ │ │
//! │ ▼ │
//! │ ┌─────────────────────┐ │
//! │ │ async-openai │ │
//! │ └─────────────────────┘ │
//! └─────────────────────────────────────────────────────────────────┘
//! ```
pub
pub
pub
pub use LlmClient;
pub use LlmResult;
pub use LlmPool;