usepod-agent 0.3.2

Use Pod marketplace provider agent — connects local inference backends (vLLM, llama.cpp, LM Studio, Ollama) to the Use Pod coordinator and earns USDC for served jobs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Library surface of the Use Pod provider agent.
//!
//! The binary (`src/main.rs`) is a thin wrapper around these modules so that
//! integration tests can exercise config parsing, identity, and protocol
//! plumbing directly.

pub mod backend;
pub mod config;
pub mod discovery;
pub mod heartbeat;
pub mod identity;
pub mod job_executor;
pub mod service;
pub mod setup;
pub mod ws_client;