oli-server 0.1.4

A simple, blazingly fast AI coding assistant server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod agent;
pub mod apis;
pub mod app;
pub mod communication;
mod errors;
mod models;
mod prompts;
pub mod tools;

// Re-export key backend components
pub use agent::core::Agent;
pub use app::core::App;
pub use app::core::AppState;
pub use communication::rpc::RpcServer;