just-common 0.2.0

Shared HTTP transport, SSE stream parsing, and error types for the just-agent ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared internals for the just-agent ecosystem.
//!
//! This crate provides:
//!
//! - authenticated HTTP client construction and endpoint URL helpers
//! - HTTP response status checking
//! - SSE stream parsing for JSON chunk payloads
//!
//! It is meant to reduce drift between sibling provider crates without collapsing their public
//! APIs into one shared provider crate.

pub mod error;
pub mod transport;

pub use error::ProviderError;