Files
bot-bottle/bot_bottle/orchestrator/http_contract.py
T
didericis-codex cf7482b098
lint / lint (push) Successful in 1m6s
test / unit (pull_request) Successful in 2m35s
test / integration-docker (pull_request) Failing after 2m26s
test / coverage (pull_request) Has been skipped
test / image-input-builds (pull_request) Successful in 1m3s
tracker-policy-pr / check-pr (pull_request) Failing after 15s
fix(orchestrator): keep host client dependency-free
2026-07-26 23:49:55 +00:00

7 lines
232 B
Python

"""Dependency-free constants shared by orchestrator HTTP clients and server."""
ORCHESTRATOR_AUTH_HEADER = "x-bot-bottle-orchestrator-auth"
MAX_BODY_BYTES = 1 * 1024 * 1024
__all__ = ["MAX_BODY_BYTES", "ORCHESTRATOR_AUTH_HEADER"]