Files
Alem Tuzlak 79ce60c580 chore: migrate from eslint+prettier to oxlint+oxfmt
Replace eslint and prettier with oxlint and oxfmt for faster linting
and formatting across the monorepo. Remove all eslint and prettier
configs, dependencies, and related packages. Add .oxlintrc.json and
.oxfmtrc.json for the new tooling. Update CI workflows and lefthook
hooks accordingly. Reformat codebase with oxfmt.

https://claude.ai/code/session_01GMkSf29p78HuMR1mbXn8He
2026-04-02 16:39:05 +02:00

22 lines
635 B
TOML

# Python dependencies for the Scene Creator agent
# This file documents the project dependencies in a standard format
# For installation, use: uv pip install -r requirements.txt
[project]
name = "scene-creator-agent"
version = "0.1.0"
description = "LangGraph agent for scene creation with Gemini 3 and Nano Banana"
requires-python = ">=3.10"
dependencies = [
"langchain>=0.3.28",
"langgraph>=0.6.6",
"langsmith>=0.4.23",
"langchain-google-genai>=3.1.0",
"langchain-core>=1.0.5",
"httpx>=0.28.0",
"fastapi>=0.115.5,<1.0.0",
"uvicorn>=0.29.0,<1.0.0",
"python-dotenv>=1.0.0,<2.0.0",
"langgraph-cli[inmem]>=0.3.3",
]