14 lines
533 B
Python
14 lines
533 B
Python
"""«Контракт-чек» — AI-скрининг рисков в договорах (СНГ / ГК РФ / ГК РБ).
|
|
|
|
Production architecture (see docs/ARCHITECTURE.md):
|
|
- core/ shared domain (config, db, mq, s3, llm, analysis, credits, tokens)
|
|
- api/ FastAPI service
|
|
- worker_*/ RabbitMQ consumers (extract, prescreen, analyze, billing, notify)
|
|
- bot/ Telegram bot adapter
|
|
|
|
Each service is importable from its own Docker image.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
__version__ = "0.1.0"
|