mirror of
https://github.com/logos-storage/bittorrent-benchmarks.git
synced 2026-01-04 22:13:12 +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]
|