Abstract the embedding providers

This commit is contained in:
Kacper Łukawski
2025-03-05 22:40:58 +01:00
parent 7c1d05ae17
commit ab110da65e
11 changed files with 253 additions and 30 deletions

View File

@@ -14,7 +14,18 @@ requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = ["pyright>=1.1.389", "pytest>=8.3.3", "ruff>=0.8.0"]
dev-dependencies = [
"pyright>=1.1.389",
"pytest>=8.3.3",
"pytest-asyncio>=0.23.0",
"ruff>=0.8.0"
]
[project.scripts]
mcp-server-qdrant = "mcp_server_qdrant:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
asyncio_mode = "auto"