rsclaw 0.0.1-alpha.1

rsclaw: High-performance AI agent (BETA). Optimized for M4 Max and 2GB VPS. 100% compatible with openclaw
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[allow(unused_imports)]
pub mod traits;
#[allow(unused_imports)]
pub mod openai;
#[allow(unused_imports)]
pub mod anthropic;
#[allow(unused_imports)]
pub mod gemini;
#[allow(unused_imports)]
pub mod registry;

#[allow(unused_imports)]
pub use traits::{
    ChatMessage, ChatRequest, ChatResponse, FinishReason, LlmProvider, MessageRole,
    ToolCall, ToolDefinition, TokenUsage,
};
#[allow(unused_imports)]
pub use registry::ProviderRegistry;