change Reranker to WeightedInMemoryAggregator

This commit is contained in:
kimbwook 2025-09-11 21:40:21 +09:00
parent 60318b659d
commit 897be1376e
No known key found for this signature in database
GPG key ID: 13B032C99CBD373A
6 changed files with 22 additions and 142 deletions

View file

@ -25,14 +25,14 @@ classifiers = [
]
dependencies = [
"aiohttp",
"fastapi>=0.115.0,<1.0", # server
"fire", # for MCP in LLS client
"fastapi>=0.115.0,<1.0", # server
"fire", # for MCP in LLS client
"httpx",
"huggingface-hub>=0.34.0,<1.0",
"jinja2>=3.1.6",
"jsonschema",
"llama-stack-client>=0.2.21",
"openai>=1.100.0", # for expires_after support
"openai>=1.100.0", # for expires_after support
"prompt-toolkit",
"python-dotenv",
"python-jose[cryptography]",
@ -43,12 +43,13 @@ dependencies = [
"tiktoken",
"pillow",
"h11>=0.16.0",
"python-multipart>=0.0.20", # For fastapi Form
"uvicorn>=0.34.0", # server
"opentelemetry-sdk>=1.30.0", # server
"python-multipart>=0.0.20", # For fastapi Form
"uvicorn>=0.34.0", # server
"opentelemetry-sdk>=1.30.0", # server
"opentelemetry-exporter-otlp-proto-http>=1.30.0", # server
"aiosqlite>=0.21.0", # server - for metadata store
"asyncpg", # for metadata store
"aiosqlite>=0.21.0", # server - for metadata store
"asyncpg", # for metadata store
"pre-commit>=4.2.0",
]
[project.optional-dependencies]