seval 0.1.2

AI-powered security research CLI with a split-pane TUI, agentic tool execution, and session persistence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! AI module.
//!
//! Manages the AI client, provider abstraction, streaming responses, and
//! system prompt loading.

pub mod compression;
pub mod provider;
pub mod streaming;
pub mod system_prompt;

pub use provider::AiProvider;
pub use streaming::spawn_streaming_chat;
pub use system_prompt::load_system_prompt;