mirror of
https://github.com/codex-storage/bittorrent-benchmarks.git
synced 2025-02-22 15:58:11 +00:00
8 lines
288 B
Python
8 lines
288 B
Python
from fastapi import FastAPI
|
|
|
|
from benchmarks.core.config import Builder
|
|
|
|
# Agents are auxiliary containers deployed alongside a :class:`Node` which allow us to implement
|
|
# arbitrary actions, like generating files for experiments, close to the node itself.
|
|
AgentBuilder = Builder[FastAPI]
|