agentai 0.1.5

AgentAI is a Rust library designed to simplify the creation of AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # User defined GenAI client
//!
//! This file provides an example of how to properly provide your own custom GenAI client.
//! You can use this for multiple purposes
//! * You can provide default values for chat options (like temperature or max tokens)
//! * You can provide your own host configuration to use not standard endpoints
//!
//! To run this example from the terminal, enter:
//! ```bash
//! cargo run --example genai_custom
//! ```
//!
//! ## Source Code
//!
//! ```rust
#![doc = include_str!("../../examples/genai_custom.rs")]
//! ```