chore: Update changelog for version 1.2.0 to include new factory modules, orchestration, and ingestion pipeline

This commit is contained in:
pseco 2026-03-05 11:15:40 +01:00
parent 010270bf22
commit 34c13dceca
1 changed files with 8 additions and 4 deletions

View File

@ -8,10 +8,14 @@ All notable changes to the **Brunix Assistance Engine** will be documented in th
### Added
- IMPLEMENTED:
- `utils/`: factory modules created for embedding model and LLM generation.
- `graph.py`: workflow graph orchestration module added.
- `prompts.py`: centralized prompt definitions added.
- `state.py`: shared state management module added.
- `src/utils/emb_factory`: factory modules created for embedding model generation.
- `src/utils/llm_factory`: factory modules created for LLM generation.
- `src/graph.py`: workflow graph orchestration module added.
- `src/prompts.py`: centralized prompt definitions added.
- `src/state.py`: shared state management module added.
- `pipelines/flows/elasticsearch_ingestion.py`: pipeline to populate the elasticsearch vector database.
- `pipelines/tasks/chunks`: modele with function related to chunk management.
- `ingestion/docs`: folder containing all chunked AVAP documents.
### Changed
- REFACTORED: `server.py` updated to integrate the new graph/state/prompt and utils-based architecture.