1use helios_engine::Agent;
7
8#[tokio::main]
9async fn main() -> helios_engine::Result<()> {
10 println!("⚡ Helios Quick Start\n");
11
12 let mut agent = Agent::quick("MyAgent").await?;
14 println!("✓ Agent created");
15
16 let response = agent.ask("What's the capital of France?").await?;
18 println!("Q: What's the capital of France?");
19 println!("A: {}\n", response);
20
21 let response2 = agent.ask("What's its population?").await?;
23 println!("Q: What's its population?");
24 println!("A: {}\n", response2);
25
26 println!("✅ Done! Create an agent and chat - that simple!");
28
29 Ok(())
30}