Spaces:
Runtime error
Runtime error
File size: 294 Bytes
dfe959f | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
export API_BASE_URL=https://api.groq.com/openai/v1
export MODEL_NAME=llama-3.3-70b-versatile
export OPENAI_API_KEY=your_groq_api_key_here
export ENV_URL=http://localhost:8000
export TASK_NAME=email_triage
echo "✅ Running WorkflowOps with Groq Llama 3.1 70B"
python3 inference.py
|