ReMe/reme_ai/__init__.py
jinli.yl 1a549de552 refactor(reme_ai): move FLOW_APP_NAME check to __init__.py
- Move the FLOW_APP_NAME environment variable check from app.py to __init__.py
- This change ensures that the environment variable is checked as soon as the package is imported
- Removed redundant import of os in app.py since it's no longer needed there
2025-09-16 17:09:09 +08:00

10 lines
226 B
Python

import os
assert "FLOW_APP_NAME" in os.environ, "please set FLOW_APP_NAME in `.env`"
from reme_ai import react
from reme_ai import retrieve
from reme_ai import summary
from reme_ai import vector_store
__version__ = "0.1.9"