2026-04-05 18:33:52 -04:00
|
|
|
ATOCORE_ENV=development
|
feat: implement AtoCore Phase 0 + Phase 0.5 (foundation + PoC)
Complete implementation of the personal context engine foundation:
- FastAPI server with 5 endpoints (ingest, query, context/build, health, debug)
- SQLite database with 5 tables (documents, chunks, memories, projects, interactions)
- Heading-aware markdown chunker (800 char max, recursive splitting)
- Multilingual embeddings via sentence-transformers (EN/FR)
- ChromaDB vector store with cosine similarity retrieval
- Context builder with project boosting, dedup, and budget enforcement
- CLI scripts for batch ingestion and test prompt evaluation
- 19 unit tests passing, 79% coverage
- Validated on 482 real project files (8383 chunks, 0 errors)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 09:21:27 -04:00
|
|
|
ATOCORE_DEBUG=false
|
2026-04-05 18:33:52 -04:00
|
|
|
ATOCORE_LOG_LEVEL=INFO
|
feat: implement AtoCore Phase 0 + Phase 0.5 (foundation + PoC)
Complete implementation of the personal context engine foundation:
- FastAPI server with 5 endpoints (ingest, query, context/build, health, debug)
- SQLite database with 5 tables (documents, chunks, memories, projects, interactions)
- Heading-aware markdown chunker (800 char max, recursive splitting)
- Multilingual embeddings via sentence-transformers (EN/FR)
- ChromaDB vector store with cosine similarity retrieval
- Context builder with project boosting, dedup, and budget enforcement
- CLI scripts for batch ingestion and test prompt evaluation
- 19 unit tests passing, 79% coverage
- Validated on 482 real project files (8383 chunks, 0 errors)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 09:21:27 -04:00
|
|
|
ATOCORE_DATA_DIR=./data
|
2026-04-05 18:33:52 -04:00
|
|
|
ATOCORE_DB_DIR=
|
|
|
|
|
ATOCORE_CHROMA_DIR=
|
|
|
|
|
ATOCORE_CACHE_DIR=
|
|
|
|
|
ATOCORE_TMP_DIR=
|
|
|
|
|
ATOCORE_VAULT_SOURCE_DIR=./sources/vault
|
|
|
|
|
ATOCORE_DRIVE_SOURCE_DIR=./sources/drive
|
|
|
|
|
ATOCORE_SOURCE_VAULT_ENABLED=true
|
|
|
|
|
ATOCORE_SOURCE_DRIVE_ENABLED=true
|
|
|
|
|
ATOCORE_LOG_DIR=./logs
|
|
|
|
|
ATOCORE_BACKUP_DIR=./backups
|
|
|
|
|
ATOCORE_RUN_DIR=./run
|
2026-04-06 09:52:19 -04:00
|
|
|
ATOCORE_PROJECT_REGISTRY_DIR=./config
|
2026-04-06 08:02:13 -04:00
|
|
|
ATOCORE_PROJECT_REGISTRY_PATH=./config/project-registry.json
|
feat: implement AtoCore Phase 0 + Phase 0.5 (foundation + PoC)
Complete implementation of the personal context engine foundation:
- FastAPI server with 5 endpoints (ingest, query, context/build, health, debug)
- SQLite database with 5 tables (documents, chunks, memories, projects, interactions)
- Heading-aware markdown chunker (800 char max, recursive splitting)
- Multilingual embeddings via sentence-transformers (EN/FR)
- ChromaDB vector store with cosine similarity retrieval
- Context builder with project boosting, dedup, and budget enforcement
- CLI scripts for batch ingestion and test prompt evaluation
- 19 unit tests passing, 79% coverage
- Validated on 482 real project files (8383 chunks, 0 errors)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-05 09:21:27 -04:00
|
|
|
ATOCORE_HOST=127.0.0.1
|
|
|
|
|
ATOCORE_PORT=8100
|
|
|
|
|
ATOCORE_EMBEDDING_MODEL=sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2
|
|
|
|
|
ATOCORE_CHUNK_MAX_SIZE=800
|
|
|
|
|
ATOCORE_CHUNK_OVERLAP=100
|
|
|
|
|
ATOCORE_CONTEXT_BUDGET=3000
|