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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
//! # Language Models and Conversation Management
//!
//! This module provides everything you need to work with language models in a provider-agnostic way.
//! Build chat applications, generate structured output, and integrate tools without being tied to any specific AI service.
//!
//! ## Core Components
//!
//! - **[`LanguageModel`]** - The main trait for text generation and conversation
//! - **[`TextStream`]** - Unified streaming interface for text responses with dual Stream/Future support
//! - **[`Request`]** - Encapsulates messages, tools, and parameters for model calls
//! - **[`Message`]** - Represents individual messages in a conversation
//! - **[`Tool`]** - Function calling interface for extending model capabilities
//!
//! ## Quick Start
//!
//! ### Basic Conversation
//!
//! ```rust
//! use aither::llm::{LanguageModel, Request, Message};
//! use futures_lite::StreamExt;
//!
//! async fn chat_with_model(model: impl LanguageModel) -> Result<String, Box<dyn std::error::Error>> {
//! // Create a simple conversation
//! let request = Request::oneshot(
//! "You are a helpful assistant",
//! "What's the capital of Japan?"
//! );
//!
//! // Stream the response
//! let mut response = model.respond(request);
//! let mut full_text = String::new();
//!
//! while let Some(chunk) = response.next().await {
//! full_text.push_str(&chunk?);
//! }
//!
//! Ok(full_text)
//! }
//! ```
//!
//! ### Multi-turn Conversation
//!
//! ```rust
//! use aither::llm::{Request, Message};
//!
//! let messages = [
//! Message::system("You are a helpful coding assistant"),
//! Message::user("How do I create a vector in Rust?"),
//! Message::assistant("You can create a vector using `Vec::new()` or the `vec!` macro..."),
//! Message::user("Can you show me an example?"),
//! ];
//!
//! let request = Request::new(messages);
//! ```
//!
//! ### Structured Output Generation
//!
//! ```rust
//! use aither::llm::{LanguageModel, Request, Message};
//! use serde::{Deserialize, Serialize};
//! use schemars::JsonSchema;
//!
//! #[derive(JsonSchema, Deserialize, Serialize)]
//! struct WeatherResponse {
//! temperature: f32,
//! condition: String,
//! humidity: i32,
//! }
//!
//! async fn get_weather_data(model: impl LanguageModel) -> aither::Result<WeatherResponse> {
//! let request = Request::oneshot(
//! "Extract weather information from the following text",
//! "It's 22°C and sunny with 65% humidity today"
//! );
//!
//! model.generate::<WeatherResponse>(request).await
//! }
//! ```
//!
//! ### Function Calling with Tools
//!
//! ```rust
//! use aither::llm::{Request, Message, Tool};
//! use schemars::JsonSchema;
//! use serde::Deserialize;
//!
//! #[derive(JsonSchema, Deserialize)]
//! struct CalculatorArgs {
//! operation: String, // "add", "subtract", "multiply", "divide"
//! x: f64,
//! y: f64,
//! }
//!
//! struct Calculator;
//!
//! impl Tool for Calculator {
//! const NAME: &str = "calculator";
//! const DESCRIPTION: &str = "Performs basic arithmetic operations";
//! type Arguments = CalculatorArgs;
//!
//! async fn call(&mut self, args: Self::Arguments) -> aither::Result {
//! let result = match args.operation.as_str() {
//! "add" => args.x + args.y,
//! "subtract" => args.x - args.y,
//! "multiply" => args.x * args.y,
//! "divide" => args.x / args.y,
//! _ => return Err(anyhow::anyhow!("Unknown operation")),
//! };
//! Ok(result.to_string())
//! }
//! }
//!
//! // Usage
//! let request = Request::new([
//! Message::user("What's 15 multiplied by 23?")
//! ]).with_tool(Calculator);
//! ```
//!
//! ### Model Configuration
//!
//! ```rust
//! use aither::llm::{Request, Message, model::Parameters};
//!
//! let request = Request::new([
//! Message::user("Write a creative story")
//! ]).with_parameters(
//! Parameters::default()
//! .temperature(0.8) // More creative
//! .top_p(0.9) // Nucleus sampling
//! .frequency_penalty(0.5) // Reduce repetition
//! );
//! ```
//!
//! ## Advanced Features
//!
//! ### Working with Text Streams
//!
//! The [`TextStream`] trait provides a unified interface for handling streaming text responses.
//! It implements both `Stream<Item = Result<String, Error>>` for chunk-by-chunk processing
//! and `IntoFuture<Output = Result<String, Error>>` for collecting complete responses.
//!
//! ```rust
//! use aither::llm::{LanguageModel, TextStream, Request, Message};
//! use futures_lite::StreamExt;
//!
//! // Process text as it streams in (useful for real-time display)
//! async fn stream_chat_response(model: impl LanguageModel) -> aither::Result {
//! let request = Request::new([Message::user("Tell me a story about robots")]);
//! let mut stream = model.respond(request);
//!
//! let mut complete_story = String::new();
//! while let Some(chunk) = stream.next().await {
//! let text = chunk?;
//! print!("{}", text); // Display each chunk as it arrives
//! complete_story.push_str(&text);
//! }
//!
//! Ok(complete_story)
//! }
//!
//! // Collect complete response using IntoFuture (simpler for batch processing)
//! async fn get_complete_response(model: impl LanguageModel) -> aither::Result {
//! let request = Request::new([Message::user("Explain machine learning")]);
//! let stream = model.respond(request);
//!
//! // TextStream implements IntoFuture, so you can await it directly
//! let explanation = stream.await?;
//! Ok(explanation)
//! }
//!
//! // Generic function that works with any TextStream implementation
//! async fn process_any_stream<S: TextStream>(stream: S) -> Result<String, S::Error> {
//! // Can either iterate through chunks...
//! let mut result = String::new();
//! let mut stream = stream;
//! while let Some(chunk) = stream.next().await {
//! result.push_str(&chunk?);
//! }
//! Ok(result)
//!
//! // ...or collect everything at once
//! // stream.await
//! }
//!
//! // Convert any Stream<Item = Result<String, E>> into a TextStream
//! use futures_lite::stream;
//!
//! async fn custom_text_stream() {
//! let chunks = vec!["Hello, ", "streaming ", "world!"];
//! let chunk_stream = stream::iter(chunks).map(|s| Ok::<String, std::io::Error>(s.to_string()));
//!
//! let text_stream = aither::llm::stream::text_stream(chunk_stream);
//! let complete_text = text_stream.await.unwrap();
//! assert_eq!(complete_text, "Hello, streaming world!");
//! }
//! ```
//!
//! ### Text Summarization
//!
//! ```rust
//! use aither::llm::LanguageModel;
//! use futures_lite::StreamExt;
//!
//! async fn summarize_text(model: impl LanguageModel, text: &str) -> Result<String, Box<dyn std::error::Error>> {
//! let mut summary_stream = model.summarize(text);
//! let mut summary = String::new();
//!
//! while let Some(chunk) = summary_stream.next().await {
//! summary.push_str(&chunk?);
//! }
//!
//! Ok(summary)
//! }
//! ```
//!
//! ### Text Categorization
//!
//! ```rust
//! use aither::llm::LanguageModel;
//! use schemars::JsonSchema;
//! use serde::{Deserialize, Serialize};
//!
//! #[derive(JsonSchema, Deserialize, Serialize)]
//! enum DocumentCategory {
//! Technical,
//! Marketing,
//! Legal,
//! Support,
//! Internal,
//! }
//!
//! #[derive(JsonSchema, Deserialize, Serialize)]
//! struct ClassificationResult {
//! category: DocumentCategory,
//! confidence: f32,
//! reasoning: String,
//! }
//!
//! async fn categorize_document(model: impl LanguageModel, text: &str) -> aither::Result<ClassificationResult> {
//! model.categorize::<ClassificationResult>(text).await
//! }
//! ```
//!
//! ## Message Types and Annotations
//!
//! Messages support rich content including file attachments and URL annotations:
//!
//! ```rust
//! use aither::llm::{Message, UrlAnnotation, Annotation};
//! use url::Url;
//!
//! let message = Message::user("Check this documentation")
//! .with_attachment("file:///path/to/doc.pdf")
//! .with_annotation(
//! Annotation::url(
//! "https://docs.rs/aither",
//! "AI Types Documentation",
//! "Rust crate for AI model abstractions",
//! 0,
//! 25,
//! )
//! );
//! ```
/// Assistant module for managing assistant-related functionality.
/// Message types and conversation handling.
/// Model profiles and capabilities.
/// Provider module for managing language model providers and their configurations.
/// Tool system for function calling.
use crate;
use ;
use try_stream;
use Future;
use Stream;
use ;
pub use ;
pub use LanguageModelProvider;
use ;
use DeserializeOwned;
pub use Tool;
use crate;
/// Creates a two-message conversation with system and user prompts.
///
/// Returns an array containing a [`Message`] with [`Role::System`] and a [`Message`] with [`Role::User`].
/// Language models for text generation and conversation.
///
/// See the [module documentation](crate::llm) for examples and usage patterns.
impl_language_model!;
/// Collects all chunks from a stream of `Result<String, Err>` into a single `String`.
///
/// # Errors
///
/// Returns an error if any chunk in the stream is an `Err`.
pub async
async
+ Send
async