chio-external-guards 0.1.1

HTTP-backed external guard adapters for Chio guard pipelines
Documentation
pub use chio_guards::external::{
    retry_with_jitter, retry_with_jitter_rng, AsyncGuardAdapter, AsyncGuardAdapterBuilder,
    AsyncGuardAdapterConfig, BackoffStrategy, CircuitBreaker, CircuitBreakerConfig,
    CircuitOpenVerdict, CircuitState, Clock, ExternalGuard, ExternalGuardError, GuardCallContext,
    RateLimitedVerdict, RetryConfig, TokenBucket, TokioClock, TtlCache,
};

mod endpoint_security;
pub use endpoint_security::{
    denied_external_guard_ip, validate_external_guard_url,
    validate_external_guard_url_with_resolver, validate_external_guard_url_without_dns,
};

pub mod azure_content_safety;
pub mod bedrock;
pub mod threat_intel;
pub mod vertex_safety;

pub use azure_content_safety::{
    AzureCategory, AzureCategoryBreakdown, AzureContentSafetyConfig, AzureContentSafetyGuard,
    AzureDecisionDetails,
};
pub use bedrock::{
    BedrockDecisionDetails, BedrockGuardrailConfig, BedrockGuardrailGuard, BedrockSource,
};
pub use threat_intel::{
    SafeBrowsingConfig, SafeBrowsingGuard, SnykConfig, SnykGuard, SnykSeverity, VirusTotalConfig,
    VirusTotalGuard,
};
pub use vertex_safety::{
    VertexDecisionDetails, VertexProbability, VertexRatingBreakdown, VertexSafetyConfig,
    VertexSafetyGuard,
};