13 lines
517 B
Python
13 lines
517 B
Python
"""«Контракт-чек» — AI-скрининг рисков в договорах (СНГ / ГК РФ / ГК РБ).
|
||
|
||
Production refactor (see docs/ARCHITECTURE.md):
|
||
- core/ shared domain (config, db, mq, s3, llm, analysis, credits, tokens)
|
||
- prototype/ stage-0 standalone benchmark CLI (preserved)
|
||
|
||
Service packages (api/, worker_extract/, worker_analyze/, bot/) land in
|
||
Steps 2–5. Importable from each service's own Docker image.
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
__version__ = "0.1.0"
|