poe2-agent 0.2.0

AI agent for Path of Exile 2 build analysis
Documentation
//! AI agent for Path of Exile 2 build analysis.
//!
//! Provides an LLM-backed query agent that answers questions about
//! Path of Building exports, plus supporting modules for PoB integration,
//! wiki data, and game knowledge.

pub mod agent;
pub mod knowledge;
pub mod llm;
pub mod pob;
pub mod pob_parser;
pub mod query_agent;
pub mod wiki;

// Re-export the types that consumers need most.
pub use agent::{AgentEvent, ChatMessage, ToolAgent};
pub use llm::{ChatGptClient, LlmError};
pub use pob_parser::{PobParseError, PobParser, PobQuery};
pub use query_agent::QueryAgent;