- Introduced `MYSQL_CORE_DATABASE` in `.env.example` and `settings.py` for core database configuration. - Added `CoreReadOnlyRepository` for read-only access to the `jinrong_core` database. - Updated `AGENTS.md`, `README.md`, and various documentation files to reflect new agent onboarding processes and project structure. - Revised requirements in `requirements.txt` to include `langgraph` and `langchain-core`. - Enhanced `FLOW.md` with local bootstrap instructions for setting up the core simulation environment. - Added new scripts for database creation and seeding for the core simulation library. - Improved overall documentation for clarity on project architecture and memory management. - Updated `TODO.md` to reflect current development priorities and tasks.
33 lines
576 B
Bash
33 lines
576 B
Bash
# Application
|
|
APP_ENV=development
|
|
|
|
# MySQL
|
|
MYSQL_HOST=127.0.0.1
|
|
MYSQL_PORT=3306
|
|
MYSQL_DATABASE=jinrong_agent
|
|
MYSQL_CORE_DATABASE=jinrong_core
|
|
MYSQL_USER=root
|
|
MYSQL_PASSWORD=
|
|
|
|
# Redis
|
|
REDIS_URL=redis://127.0.0.1:6379/0
|
|
|
|
# Neo4j
|
|
NEO4J_URI=bolt://localhost:7687
|
|
NEO4J_USER=neo4j
|
|
NEO4J_PASSWORD=
|
|
|
|
# Milvus Lite
|
|
MILVUS_URI=./data/milvus.db
|
|
|
|
# Ollama Embedding
|
|
OLLAMA_BASE_URL=http://127.0.0.1:11434
|
|
EMBED_MODEL=bge-m3
|
|
|
|
# DeepSeek LLM
|
|
DEEPSEEK_API_KEY=
|
|
DEEPSEEK_BASE_URL=https://api.deepseek.com
|
|
|
|
# JWT (dev only — production use RS256 + IdP)
|
|
JWT_DEV_SECRET=change-me-in-dev-only
|