Spaces:
Configuration error
Configuration error
File size: 335 Bytes
af2c3f6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash
echo " Setting up Agentic Environment..."
# Install agentic frameworks
pip install langchain langgraph chromadb
# Set up memory store
mkdir -p .memory/vector_store
# Configure API keys (from Codespaces secrets)
if [ -n "$OPENAI_API_KEY" ]; then
echo "OPENAI_API_KEY configured"
fi
echo " Agentic environment ready!" |