跳转到主要内容
So… you have a gateway running - yay!

The Office: Raise the Roof Party Gif

什么是 Marketplace?

The Livepeer Marketplace allows Orchestrators to advertise available compute, compute services (AI & Video), pricing, and performance characteristics. The Marketplace is NOT一个面向终端用户的公开市场,而是网关发现和连接应用程序以访问可用服务的程序化接口。 在 Livepeer 市场中,网关的作用类似于搜索引擎 它们发现协调器提供的服务,应用选择和路由逻辑,并根据成本、性能和策略要求,为应用程序代理访问适当的服务。
  • 协调器将服务发布到 Livepeer 市场; > - 网关 将应用程序请求过滤并连接到这些服务。



协调器提供详情

一个提供是结构化的声明,包括:
  • 支持的模型(例如,SDXL、ControlNet、深度模型)
  • 支持的管道(ComfyStream、Daydream、BYOC)
  • 每帧 / 每秒 / 每个请求的定价
  • GPU 层级和性能指标
  • 区域可用性
  • SLA 和预期延迟
Orchestrators 通过以下方式发布他们的服务OrchestratorInfo数据结构
message OrchestratorInfo {
    string transcoder = 1;           // Service URI
    TicketParams ticket_params = 2;   // Payment parameters
    PriceInfo price_info = 3;         // Pricing information
    bytes address = 4;               // ETH address
    Capabilities capabilities = 5;    // Supported features
    AuthToken auth_token = 6;         // Authentication
    repeated HardwareInformation hardware = 7;  // Hardware specs
    repeated OSInfo storage = 32;     // Storage options
    repeated PriceInfo capabilities_prices = 33;  // AI model pricing
}
协调器将计算级别提供的服务发布到市场,供网关发现并路由任务。
Last modified on March 1, 2026