Lean MCP implementation

This commit is contained in:
2026-02-23 03:29:21 +00:00
parent 98d23b80e4
commit 3a8bade307
38 changed files with 2395 additions and 3541 deletions

View File

@@ -1,5 +1,5 @@
[project]
name = "rag-eval"
name = "va-agent"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
@@ -9,28 +9,20 @@ authors = [
]
requires-python = "~=3.12.0"
dependencies = [
"aiohttp>=3.13.3",
"gcloud-aio-auth>=5.4.2",
"gcloud-aio-storage>=9.6.1",
"google-adk>=1.14.1",
"google-cloud-aiplatform>=1.126.1",
"google-cloud-storage>=2.19.0",
"google-cloud-firestore>=2.23.0",
"pydantic-settings[yaml]>=2.13.1",
"structlog>=25.5.0",
]
[project.scripts]
ragops = "rag_eval.cli:app"
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"clai>=1.62.0",
"marimo>=0.20.1",
"pytest>=8.4.1",
"pytest-asyncio>=1.3.0",
"pytest-sugar>=1.1.1",
"ruff>=0.12.10",
"ty>=0.0.1a19",
]
@@ -43,4 +35,10 @@ exclude = ["scripts"]
[tool.ruff.lint]
select = ['ALL']
ignore = ['D203', 'D213', 'COM812']
ignore = [
'D203', # one-blank-line-before-class
'D213', # multi-line-summary-second-line
'COM812', # missing-trailing-comma
'ANN401', # dynamically-typed-any
'ERA001', # commented-out-code
]