scaffold: kind+Tilt cluster, api/ui/docs stubs, green at nvi.local.ar

This commit is contained in:
2026-06-03 00:33:51 -03:00
commit 131f4d9b86
39 changed files with 3571 additions and 0 deletions

35
pyproject.toml Normal file
View File

@@ -0,0 +1,35 @@
[project]
name = "nvi"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"fastapi",
"uvicorn[standard]",
"pydantic>=2.0",
"pydantic-settings",
"anthropic",
"langgraph",
"langchain-anthropic",
"langfuse",
"psycopg[binary]",
"sqlglot",
"httpx",
"pyyaml",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"ruff",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
asyncio_mode = "auto"