fix(orchestrator): keep host client dependency-free

This commit is contained in:
2026-07-26 23:49:55 +00:00
parent cea1f0a058
commit 25c5ce71f6
4 changed files with 10 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
"""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"]