Use built-in TypedDict from typing module

Python 3.10+ includes TypedDict in the standard library.
Removed typing-extensions dependency as it's unnecessary.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Daniel Chalef 2025-11-08 18:04:17 -08:00
parent af61e587f9
commit 6805218e1b
2 changed files with 1 additions and 4 deletions

View file

@ -10,7 +10,6 @@ dependencies = [
"graphiti-core[falkordb]>=0.23.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0",
"typing-extensions>=4.0.0",
]
[project.optional-dependencies]

View file

@ -1,8 +1,6 @@
"""Response type definitions for Graphiti MCP Server."""
from typing import Any
from typing_extensions import TypedDict
from typing import Any, TypedDict
class ErrorResponse(TypedDict):