mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-24 00:51:43 +00:00
- 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
10 lines
226 B
Python
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"
|