appam 0.1.1

High-throughput, traceable, reliable Rust agent framework for long-horizon AI sessions and easy extensibility
Documentation
1
2
3
4
5
6
7
8
9
10
//! Shared HTTP utilities.
//!
//! This module exposes helpers for constructing and reusing HTTP clients across
//! the project. Centralizing the client lifecycle prevents us from spawning
//! redundant connection pools when thousands of requests are issued in parallel.
//! By reusing clients we dramatically reduce the number of open sockets, which
//! in turn avoids hitting the operating system's file descriptor limits during
//! large scans.

pub mod client_pool;