agent-pard0x/pyproject.toml
Gaetan Hurel 081fb6b6d6
Initial commit: LangGraph chatbot with shell tool capabilities
- Add basic LangGraph chatbot implementation with OpenAI GPT-4
- Include shell tool integration for system command execution
- Set up project with uv package manager
- Add comprehensive README with setup instructions
- Include proper .gitignore for Python projects
2025-06-25 14:56:06 +02:00

15 lines
339 B
TOML

[project]
name = "langgraph-pard0x"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"langchain>=0.3.26",
"langchain-openai>=0.3.25",
"langgraph>=0.4.9",
"langsmith>=0.4.2",
"langchain-community>=0.3.0",
"langchain-experimental>=0.3.0",
]