openai4rs 0.1.9

A non-official Rust crate for calling the OpenAI service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Utility functions and traits used internally by the `openai4rs` crate.
//!
//! This module contains various utility functions and traits that are used
//! throughout the `openai4rs` crate to simplify common tasks and provide
//! shared functionality.
//!
//! # Key Components
//!
//! - [`Apply`]: A trait for applying asynchronous functions to streams.
//! - [`ResponseHandler`]: A trait for processing API responses (used internally).
//! - [`AsyncFrom`]: A trait for asynchronous conversion between types (used internally).

pub mod methods;
pub mod traits;