magi-openai 0.1.0

OpenAI compatible API SDK for Magi AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//https://platform.openai.com/docs/api-reference/chat/create
pub mod request;
//https://platform.openai.com/docs/api-reference/chat/object
pub mod response;
//https://platform.openai.com/docs/api-reference/chat-streaming/streaming
pub mod chunk;

#[cfg(all(feature = "completions", feature = "rmcp"))]
pub mod rmcp;

#[cfg(all(feature = "completions", feature = "magi"))]
pub mod magi;