stateset-a2a 1.22.0

Agent-to-Agent commerce service layer: splits, subscriptions, escrow, webhooks, event streaming
1
2
3
4
5
6
7
8
9
10
//! Marketplace and RFQ (Request for Quote) module.
//!
//! Provides multi-party RFQ management with configurable scoring criteria
//! and response ranking.

pub mod scoring;
pub mod state_machine;

pub use scoring::{RfqResponse, ScoringCriteria, rank_responses, score_response};
pub use state_machine::{RfqResponseStatus, RfqStatus, RfqTransition};