claux 20260404.0.0

Terminal AI coding assistant with tool execution
1
2
3
4
5
6
7
8
9
10
11
pub(crate) mod anthropic;
pub(crate) mod openai_compat;
pub(crate) mod provider;
pub(crate) mod stream;
pub(crate) mod types;

pub use anthropic::AnthropicProvider;
pub use openai_compat::OpenAICompatProvider;
pub use provider::Provider;
pub use stream::ApiEvent;
pub use types::*;