poe2_agent/lib.rs
1//! AI agent for Path of Exile 2 build analysis.
2//!
3//! Provides an LLM-backed query agent that answers questions about
4//! Path of Building exports, plus supporting modules for PoB integration,
5//! wiki data, and game knowledge.
6
7pub mod agent;
8pub mod knowledge;
9pub mod llm;
10pub mod pob;
11pub mod pob_parser;
12pub mod query_agent;
13pub mod wiki;
14
15// Re-export the types that consumers need most.
16pub use agent::{AgentEvent, ChatMessage, ToolAgent};
17pub use llm::{ChatGptClient, LlmError};
18pub use pob_parser::{PobParseError, PobParser, PobQuery};
19pub use query_agent::QueryAgent;