1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
//! You can import everything directly from the crate:
//! ```rust
//! use reagent_rs::{Agent, AgentBuilder, Flow, Tool, Message};
//! ```
//! Or pull in the essentials:
//! ```rust
//! use reagent_rs::prelude::*;
//! ```
//!
//! Create an [`Agent`] using [`AgentBuilder`] :
//!
//! ```
//! use std::error::Error;
//! use reagent_rs::{init_default_tracing, AgentBuilder};
//! use schemars::{schema_for, JsonSchema};
//! use serde::Deserialize;
//!
//! #[derive(Debug, Deserialize, JsonSchema)]
//! struct MyWeatherOuput {
//! windy: bool,
//! temperature: i32,
//! description: String
//! }
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn Error>> {
//! init_default_tracing();
//!
//! let mut agent = AgentBuilder::default()
//! .set_model("qwen3:0.6b")
//! .set_system_prompt("You make up weather info in JSON")
//! .set_response_format_from::<MyWeatherOuput>()
//! .set_temperature(0.6)
//! .set_top_k(20)
//! .set_stream(true)
//! .build()
//! .await?;
//!
//! let resp: MyWeatherOuput = agent
//! .invoke_flow_structured_output("What is the current weather in Koper?")
//! .await?;
//!
//! Ok(())
//! }
//! ```
//!
//!
//! Reagent talks to Ollama by default. It also supports OpenRouter.
//! To use OpenRouter, set the provider to `Provider::OpenRouter` and supply your API key.
//!
//! ```rust
//!
//! use reagent_rs::{AgentBuilder, Provider};
//!
//! async {
//! let agent = AgentBuilder::default()
//! .set_provider(Provider::OpenRouter)
//! .set_api_key("your_openrouter_key")
//! .set_model("meta-llama/llama-3.1-8b-instruct:free")
//! .build()
//! .await;
//! };
//! ```
pub use crate*;
pub use crate*;
pub use crate*;
pub use crate*;
pub use crate*;
pub use crate*;
pub use crate;
pub use crateRole;
pub use crate;
pub use crateMessage;
pub use crateMcpIntegrationError;
pub use crateMcpServerType;
pub use JsonSchema;
pub use Value;