Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
@@ -0,0 +1,23 @@
"""Tests for Telegram document-size cap.
The public Telegram Bot API caps `getFile` at 20MB. A locally-hosted
`telegram-bot-api` server raises that ceiling to 2GB. We treat the presence
of `extra.base_url` as the explicit opt-in to the higher cap.
"""
from gateway.config import PlatformConfig
from plugins.platforms.telegram.adapter import TelegramAdapter # noqa: E402
def test_max_doc_bytes_raised_to_2gb_when_base_url_set():
adapter = TelegramAdapter(
PlatformConfig(
enabled=True,
token="***",
extra={"base_url": "http://localhost:8081/bot"},
)
)
assert adapter._max_doc_bytes == 2 * 1024 * 1024 * 1024