Skip to main content

headless_lms_chatbot/azure_chatbot/azure/
mod.rs

1//! The wire side of the Azure Responses API: its request and response shapes, how a tool is
2//! advertised in a request, its SSE framing, and the HTTP call. Nothing here knows about
3//! conversations, what a tool does or the database.
4
5pub mod protocol;
6pub(super) mod sse;
7pub mod tools;
8pub(super) mod transport;