rig-tei 0.1.5

Rig adapter for TEI: integrates the Text Embedding Inference service with the Rig ecosystem (request/response types, streaming, error handling).
Documentation
//! Category: mod.rs (top-level module and constant exports)
//! Structure mirrors rig-bedrock:
//! - client.rs: Client and Builder; implements Provider/Verify/Embedding
//! - embedding.rs: Text embeddings
//! - rerank.rs: Text reranking
//! - predict.rs: Classification/prediction

pub mod client;
pub mod embedding;
pub mod predict;
pub mod rerank;

pub use client::{Client, Endpoints};
pub use embedding::EmbeddingModel;
pub use predict::{LabelScore, PredictError, PredictResponse};
pub use rerank::{RerankError, RerankResult};

// Default local TEI base URL
pub const TEI_DEFAULT_BASE_URL: &str = "http://127.0.0.1:8080";