- Implemented utility functions for extracting, validating, and normalizing Aktenzeichen in 'aktenzeichen_utils.py'. - Created LangChainXAIService for integrating LangChain ChatXAI with file search capabilities in 'langchain_xai_service.py'. - Developed VMH xAI Chat Completions API to handle OpenAI-compatible requests with support for Aktenzeichen detection and file search in 'xai_chat_completion_api_step.py'.
26 lines
765 B
TOML
26 lines
765 B
TOML
[project]
|
|
name = "motia-iii-example-python"
|
|
version = "0.0.1"
|
|
description = "Motia iii Example - Python Implementation"
|
|
authors = [{ name = "III" }]
|
|
requires-python = ">=3.10"
|
|
|
|
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", # Retry/backoff decorator
|
|
"langchain>=0.3.0", # LangChain framework
|
|
"langchain-xai>=0.2.0", # xAI integration for LangChain
|
|
"langchain-core>=0.3.0", # LangChain core
|
|
]
|
|
|