//! # Simple Example
//!
//! Here is a very simple example of how to use AgentAI crate. Here we only initialize
//! LLM client, and later use it to answer a simple question.
//!
//! Remember to provide return type for answer, it is very important, so a library
//! will knows do you expect structured output or just simple String.
//!
//! To run this example from the terminal, enter:
//! ```bash
//! cargo run --example simple
//! ```
//!
//! ## Source Code
//!
//! ```rust
//! ```