poe2-agent 0.1.0

AI agent for Path of Exile 2 build analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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 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 llm::{ChatGptClient, LlmError};
pub use pob_parser::{PobParseError, PobParser};
pub use query_agent::QueryAgent;