Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
464ec5380c |
@@ -5,6 +5,12 @@ All notable changes to Library Desk will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.2.1] - 2025-12-15
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- HybridRAG router missing `content_extractor` dependency causing 500 errors on `/query/hybrid` endpoint
|
||||||
|
|
||||||
## [1.2.0] - 2025-12-15
|
## [1.2.0] - 2025-12-15
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "library-desk"
|
name = "library-desk"
|
||||||
version = "1.2.0"
|
version = "1.2.1"
|
||||||
description = "Coordination service for The Library system - HybridRAG queries, document ingestion, entity extraction, and knowledge consolidation"
|
description = "Coordination service for The Library system - HybridRAG queries, document ingestion, entity extraction, and knowledge consolidation"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ from src.clients.searxng_client import SearXNGClient
|
|||||||
from src.clients.ollama_client import OllamaClient
|
from src.clients.ollama_client import OllamaClient
|
||||||
from src.core.dependencies import (
|
from src.core.dependencies import (
|
||||||
Neo4jDep, WikiJSDep, QdrantDep, OllamaDep,
|
Neo4jDep, WikiJSDep, QdrantDep, OllamaDep,
|
||||||
SearXNGDep, verify_api_key, get_settings
|
SearXNGDep, ContentExtractorDep, verify_api_key, get_settings
|
||||||
)
|
)
|
||||||
from src.config import Settings
|
from src.config import Settings
|
||||||
|
|
||||||
@@ -32,6 +32,7 @@ def get_hybrid_rag_service(
|
|||||||
qdrant_client: QdrantDep,
|
qdrant_client: QdrantDep,
|
||||||
ollama_client: OllamaDep,
|
ollama_client: OllamaDep,
|
||||||
searxng_client: SearXNGDep,
|
searxng_client: SearXNGDep,
|
||||||
|
content_extractor: ContentExtractorDep,
|
||||||
settings: Settings = Depends(get_settings)
|
settings: Settings = Depends(get_settings)
|
||||||
) -> HybridRAGService:
|
) -> HybridRAGService:
|
||||||
"""Get HybridRAG service instance with all dependencies."""
|
"""Get HybridRAG service instance with all dependencies."""
|
||||||
@@ -48,6 +49,7 @@ def get_hybrid_rag_service(
|
|||||||
graph_service=graph_service,
|
graph_service=graph_service,
|
||||||
searxng_client=searxng_client,
|
searxng_client=searxng_client,
|
||||||
ollama_client=ollama_client,
|
ollama_client=ollama_client,
|
||||||
|
content_extractor=content_extractor,
|
||||||
settings=settings
|
settings=settings
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user