use helios_engine::Agent;
#[tokio::main]
async fn main() -> helios_engine::Result<()> {
println!("⚡ Helios Quick Start\n");
let mut agent = Agent::quick("MyAgent").await?;
println!("✓ Agent created");
let response = agent.ask("What's the capital of France?").await?;
println!("Q: What's the capital of France?");
println!("A: {}\n", response);
let response2 = agent.ask("What's its population?").await?;
println!("Q: What's its population?");
println!("A: {}\n", response2);
println!("✅ Done! Create an agent and chat - that simple!");
Ok(())
}