Skip to main content

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 tools;
14pub mod trace;
15pub mod trade;
16pub mod wiki;
17
18// Re-export the types that consumers need most.
19pub use agent::{AgentEvent, ChatMessage, ToolAgent};
20pub use llm::{ChatGptClient, LlmError, Usage};
21pub use pob_parser::{PobParseError, PobParser, PobQuery};
22pub use query_agent::QueryAgent;
23pub use trace::AgentTrace;
24pub use trade::TradeClient;