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
//! HTTP module for the OpenAI client.
//!
//! This module provides the HTTP transport layer implementation for making requests
//! to the OpenAI API. It includes components for configuration, request execution,
//! and response handling.

pub mod client;
pub mod executor;
pub mod request;
pub mod transport;

pub(crate) use client::HttpClient;