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
This commit is contained in:
Gaetan Hurel
2025-06-25 14:56:06 +02:00
commit 081fb6b6d6
6 changed files with 1516 additions and 0 deletions

11
.env.example Normal file
View File

@@ -0,0 +1,11 @@
# Environment Variables Template
# Copy this file to .env and fill in your actual values
# OpenAI API Key - Get from https://platform.openai.com/api-keys
OPENAI_API_KEY=your-openai-api-key-here
# Optional: LangSmith API Key for debugging and monitoring
# LANGSMITH_API_KEY=your-langsmith-api-key-here
# LANGSMITH_TRACING=true
TAVILY_API_KEY=your-tavily-api-key-here