Spaces:
Sleeping
Sleeping
File size: 3,496 Bytes
0c5f81b 7853cbe 0c5f81b 7853cbe 658ea3e 7853cbe 0c5f81b 7853cbe 0c5f81b 7853cbe 0c5f81b 7853cbe 0c5f81b 9080423 0c5f81b 7853cbe 0c5f81b 7853cbe 0c5f81b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | # Setup Guide for OpenEnv-CloudSOC
## For Local Testing
### Prerequisites
- Python 3.11+
- Hugging Face API token (free, get one at https://huggingface.co/settings/tokens)
### Installation
```bash
# Install dependencies
pip install -r requirements.txt
# Set environment variables
export API_BASE_URL="https://router.huggingface.co/v1"
export MODEL_NAME="Qwen/Qwen2.5-Coder-32B-Instruct"
export HF_TOKEN="your_hf_token"
# Run inference
python inference.py --task easy --seed 42
```
## For Hugging Face Space Deployment
### Prerequisites
- GitHub account with this repository forked
- Hugging Face account
- Hugging Face API token (create at https://huggingface.co/settings/tokens)
### Deployment Steps
1. **Create a New Space**
- Go to https://huggingface.co/new-space
- Space name: `openenv-cloudsoc` (or your preferred name)
- SDK: Select **Docker**
- Repository: Paste URL of your GitHub fork
- Click "Create space"
2. **Add HF_TOKEN Secret**
- Space will start building automatically
- Navigate to **Settings** β **Repository** β **Secrets**
- Click "Add secret"
- Key: `HF_TOKEN`
- Value: Paste your HF API token from https://huggingface.co/settings/tokens
- Click "Add secret"
3. **Restart the Space**
- After adding the secret, the Space should rebuild
- Monitor the build status in the **Logs** tab
- Once **Status: Running**, the benchmark is live
### Verification
Once deployed with HF token, you should see output like:
```
[START] task=easy env=cloudsoc model=Qwen/Qwen2.5-7B-Instruct
[STEP] step=1 action=aws.soc.get_alerts({}) reward=0.02 done=false error=null
...
[END] success=true steps=8 rewards=0.02,0.02,0.10,0.05,0.10,0.05,0.25,0.10
```
## For Hackathon Submission
When submitting to the OpenEnv RL Challenge:
1. Ensure your HF Space is in **Running** state
2. The evaluator will:
- Trigger inference via the Space API
- Provide HF_TOKEN as an environment variable
- Collect [START]/[STEP]/[END] output
3. Your submission must:
- Use OpenAI Client (β
we do)
- Have `inference.py` in root (β
we do)
- Support required env vars (β
we do)
- Output hackathon format (β
we do)
## Resource Constraints
Your solution will run in:
- **2 vCPU**
- **8 GB RAM**
- **15-40 second timeout per task**
Current optimizations:
- β
Qwen2.5-3B-Instruct (lightweight 3B model)
- β
MAX_TOKENS: 512 (smaller outputs)
- β
MAX_CONTEXT_TURNS: 4 (reduced context window)
- β
Timeout: 45 seconds
## Troubleshooting
### Error: "HF_TOKEN environment variable is required"
**Solution**: Add `HF_TOKEN` as a Space Secret
1. Go to Space Settings β Repository β Secrets
2. Add `HF_TOKEN` with your token value
3. Restart the Space
### Error: "Connection timeout"
**Cause**: Qwen2.5-3B model cold start or API latency
**Solution**: The timeout is set to 45 seconds. Retries use exponential backoff.
### Space stuck building
**Cause**: Multiple active Spaces consuming resources
**Solution**: Stop unnecessary Spaces at https://huggingface.co/settings/spaces
## Getting Your HF Token
1. Go to https://huggingface.co/settings/tokens
2. Click "New token"
3. Name: `openenv-submission`
4. Access level: **Read** (sufficient for inference)
5. Copy the token and save securely
6. Add to Space Secrets as `HF_TOKEN`
## Support
For issues:
1. Check Space Logs tab
2. Verify HF_TOKEN is set and valid
3. Ensure Space is in **Running** state
4. Check this README for environment variable documentation
|