Files
motia-iii/pyproject.toml
bsiggel e255ae1263 feat(graphiti): Implement Graphiti client and related steps for episode ingestion and querying
- Added `graphiti_client.py` to manage the Graphiti client as a singleton.
- Created `ingest_episode_event_step.py` to handle episode ingestion from HTTP webhook events.
- Implemented `ingest_episode_step.py` for validating and enqueuing episode payloads via a POST request.
- Developed `query_graph_step.py` for performing semantic searches in the Graphiti Knowledge-Graph.
- Introduced an `__init__.py` file for the graphiti steps module.
2026-03-30 08:25:49 +00:00

28 lines
845 B
TOML

[project]
name = "motia-iii-example-python"
version = "0.0.1"
description = "Motia iii Example - Python Implementation"
authors = [{ name = "III" }]
requires-python = ">=3.12"
dependencies = [
"motia[otel]==1.0.0rc24",
"iii-sdk==0.2.0",
"pydantic>=2.0",
"aiohttp>=3.10.0",
"redis>=5.2.0",
"python-dotenv>=1.0.0",
"pytz>=2025.2",
"requests>=2.32.0",
"asyncpg>=0.29.0", # PostgreSQL async driver for calendar sync
"google-api-python-client>=2.100.0", # Google Calendar API
"google-auth>=2.23.0", # Google OAuth2
"backoff>=2.2.1",
"ragflow-sdk>=0.24.0", # RAGFlow AI Provider
"langchain>=0.3.0", # LangChain framework
"langchain-xai>=0.2.0", # xAI integration for LangChain
"langchain-core>=0.3.0", # LangChain core
"graphiti-core>=0.28.0", # Graphiti Knowledge-Graph
]