localgpt-server 0.3.0

LocalGPT HTTP server and Telegram bot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(not(target_arch = "wasm32"))]
mod http;
#[cfg(not(target_arch = "wasm32"))]
mod openai_compat;
#[cfg(not(target_arch = "wasm32"))]
mod rate_limiter;
#[cfg(not(target_arch = "wasm32"))]
pub mod telegram;
#[cfg(not(target_arch = "wasm32"))]
mod websocket;

#[cfg(not(target_arch = "wasm32"))]
pub mod security;

#[cfg(not(target_arch = "wasm32"))]
pub use http::Server;
#[cfg(not(target_arch = "wasm32"))]
pub use security::BridgeManager;