Initial SOC memory POC implementation

This commit is contained in:
2026-04-27 17:13:06 +08:00
parent fc68581198
commit e6b1520bce
89 changed files with 7610 additions and 1 deletions

33
pyproject.toml Normal file
View File

@ -0,0 +1,33 @@
[project]
name = "memory-gateway"
version = "0.1.0"
description = "基于 OpenViking 的统一记忆入口 MCP Server"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.109.0",
"sse-starlette>=2.0.0",
"mcp[cli]>=1.1.0",
"httpx>=0.26.0",
"pydantic>=2.5.0",
"pyyaml>=6.0",
"uvicorn>=0.27.0",
"tenacity>=8.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = []
[tool.ruff]
target-version = "py310"