refactor: Remove unused uuid import from chunks.py and update changelog for refactoring changes
This commit is contained in:
parent
34c13dceca
commit
51f42c52b3
|
|
@ -19,15 +19,8 @@ All notable changes to the **Brunix Assistance Engine** will be documented in th
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- REFACTORED: `server.py` updated to integrate the new graph/state/prompt and utils-based architecture.
|
- REFACTORED: `server.py` updated to integrate the new graph/state/prompt and utils-based architecture.
|
||||||
|
- REFACTORED: `docker-compose.yaml` now uses fully parameterized environment variables instead of hardcoded service URLs and credentials.
|
||||||
- DEPENDENCIES: `requirements.txt` updated with new libraries required by the new modules.
|
- DEPENDENCIES: `requirements.txt` updated with new libraries required by the new modules.
|
||||||
- BUILD/OPS: `Makefile` updated with commands:
|
|
||||||
- `ollama_local`
|
|
||||||
- `tunnels_down`
|
|
||||||
- `sync_data_down`
|
|
||||||
- `sync_data_up`
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- RESOLVED: Command coverage and dependency consistency for local execution and data sync workflows.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import re
|
import re
|
||||||
import hashlib
|
import hashlib
|
||||||
import uuid
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue