fix(orchestrator): bound streamed request bodies

This commit is contained in:
2026-07-27 02:24:06 +00:00
committed by didericis
parent 2de61eeb17
commit 479b93bd0b
6 changed files with 194 additions and 57 deletions
+6 -1
View File
@@ -2,5 +2,10 @@
ORCHESTRATOR_AUTH_HEADER = "x-bot-bottle-orchestrator-auth"
MAX_BODY_BYTES = 1 * 1024 * 1024
REQUEST_BODY_TIMEOUT_SECONDS = 10.0
__all__ = ["MAX_BODY_BYTES", "ORCHESTRATOR_AUTH_HEADER"]
__all__ = [
"MAX_BODY_BYTES",
"ORCHESTRATOR_AUTH_HEADER",
"REQUEST_BODY_TIMEOUT_SECONDS",
]