chabeau 0.7.3

A full-screen terminal chat interface that connects to various AI APIs for real-time conversations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Setting handlers for different configuration patterns.

pub mod boolean;
pub mod mcp;
pub mod provider_keyed;
pub mod provider_model_keyed;
pub mod simple;
pub mod string;

pub use boolean::*;
pub use mcp::*;
pub use provider_keyed::*;
pub use provider_model_keyed::*;
pub use simple::*;
pub use string::*;