mirror of
https://github.com/RightNow-AI/openfang.git
synced 2026-07-30 15:01:15 +00:00
18 lines
434 B
Rust
18 lines
434 B
Rust
//! HTTP/WebSocket API server for the OpenFang Agent OS daemon.
|
|
//!
|
|
//! Exposes agent management, status, and chat via JSON REST endpoints.
|
|
//! The kernel runs in-process; the CLI connects over HTTP.
|
|
|
|
pub mod channel_bridge;
|
|
pub mod middleware;
|
|
pub mod openai_compat;
|
|
pub mod rate_limiter;
|
|
pub mod routes;
|
|
pub mod server;
|
|
pub mod session_auth;
|
|
pub mod stream_chunker;
|
|
pub mod stream_dedup;
|
|
pub mod types;
|
|
pub mod webchat;
|
|
pub mod ws;
|