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
//! ObjectiveAI API server library.
//!
//! This crate provides the core implementation for the ObjectiveAI REST API,
//! which enables scoring, ranking, and simulating preferences using swarms of LLMs.
//!
//! # Modules
//!
//! - [`auth`] - Authentication and API key management
//! - [`chat`] - Chat completions with Swarm LLMs
//! - [`ctx`] - Request context and extensions
//! - [`swarm`] - Swarm management and retrieval
//! - [`agent`] - Agent management and retrieval
//! - [`error`] - Error response handling
//! - [`functions`] - Function execution and profile management
//! - [`util`] - Utility types for streaming and indexing
//! - [`vector`] - Vector completions for scoring and ranking
/// Authentication and API key management.
/// Request context and extensions for dependency injection.
/// Agent management, fetching, and retrieval.
/// Error response handling and conversion.
/// Local filesystem client for reading from git repositories.
/// Function execution, profile management, and computations.
/// GitHub API client for fetching functions and profiles.
/// ObjectiveAI HTTP client wrapper with per-request authorization.
/// Unified retrieval for agents, swarms, functions, and profiles.
/// Utility types for streaming and choice indexing.
/// Vector completions for scoring and ranking responses.
/// Mock
/// Viewer client for streaming events to the Tauri viewer.
/// Laboratory execution orchestration.
/// Server runner
pub use *;
pub
pub