Spaces:
Sleeping
Sleeping
File size: 9,543 Bytes
7aa2f63 a4e4bc8 8bdb060 a4e4bc8 8bdb060 a4e4bc8 6b61dd3 93fd30a a4e4bc8 c3d4f60 a4e4bc8 d0b62f7 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 6b61dd3 a4e4bc8 8bdb060 3ab6841 a4e4bc8 1bca01c a4e4bc8 340ce5a f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d d0b62f7 f696b4d | 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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | ---
title: Sieve
sdk: docker
pinned: false
---
# Sieve β Customer Support RL Environment
Sieve is a reinforcement learning environment that simulates a real-world customer support inbox. An AI agent interacts with it through a standard `reset() / step() / state()` HTTP API, receiving emails, taking actions, and earning rewards based on how well it handles each situation.
## How It Works

The agent calls `/reset` to start an episode, then loops β reading the current email from the `Observation`, posting an `Action` to `/step`, and receiving a `Reward` and next `Observation` β until `done=true`. Each step reward reflects immediate quality. A `-0.005` step penalty discourages unnecessary actions. The final grader score from `/grader` is a holistic metric computed over the full episode.
## Project Structure
```
.
βββ models.py # Shared Pydantic models (Action, Observation, Reward, etc.)
βββ inference.py # Baseline agent script using OpenAI client
βββ logger.py # Structured [START]/[STEP]/[END] stdout logger
βββ openenv.yaml # OpenEnv environment metadata
βββ pyproject.toml # Project config and dependencies
βββ Dockerfile # Container definition
βββ .env.example # Example environment variables (copy to .env)
βββ server/
βββ app.py # FastAPI application and API endpoints
βββ environment.py # Core environment logic (step, reset, reward, grader)
βββ data.py # Email datasets for all three tasks
βββ config.py # Action schema definition
```
## Tasks
### Task 1 β Email Classification (Easy)
The agent receives one email at a time and must classify it using the `classify` action.
**Available action:** `classify` only
**Step Rewards**
- Correct category: `+0.15`
- Wrong category: `-0.05`
- Correct urgency: `+0.05`
- Wrong urgency: `-0.02`
- Wrong action type: `-0.05`
- Step penalty: `-0.005`
**Final Grader Score**
- Category accuracy: `70%` weight
- Urgency accuracy: `30%` weight
---
### Task 2 β Response Drafting (Medium)
The agent reads a customer email and drafts a professional response using the `respond` action.
**Available action:** `respond` only
**Step Rewards**
- Response >= 50 characters: `+0.05`
- Response < 50 characters: `-0.10`
- Keyword coverage: up to `+0.25` (scaled by `matched / min_required`)
- Negative/unprofessional tone (VADER neg > 0.4): `-0.10`
- Wrong action type: `-0.05`
- Step penalty: `-0.005`
**Final Grader Score**
- Keyword coverage weighted at `0.80`
- Length bonus up to `0.20` (scaled by `length / 200`, requires length > 50)
- Averaged across all emails in the task
---
### Task 3 β Full Support Session (Hard)
The agent manages a queue of 15 mixed emails. It must choose which email to handle, classify it, and take the right action β all in the correct priority order.
**Available actions:** `respond`, `escalate`, `archive`, `skip`
**Priority rules**
- VIP customers (`sender_tier=vip`) must be handled before standard customers
- High urgency emails take precedence over medium and low
- Security breaches and VIP incidents β `escalate`
- Spam and feature requests β `archive`
- Standard billing and technical issues β `respond`
- Use `email_id` in the action to select which email to process
**Step Rewards**
- VIP email handled in first 4 positions: `+0.08`
- VIP email delayed (position >= 4): `-0.05`
- High urgency email in first 6 positions: `+0.05`
- Low urgency email after position 6: `+0.03`
- Correct category: `+0.04`
- Correct urgency: `+0.02`
- Correct action: `+0.06`
- Wrong action: `-0.03`
- Response text provided and > 50 characters: `+0.02`
- Spam not archived: `-0.04`
- Step penalty: `-0.005`
**Final Grader Score**
- VIP prioritization: up to `0.20` (40% credit if handled late)
- High urgency prioritization: up to `0.10` (40% credit if handled late)
- Category accuracy: up to `0.15`
- Urgency accuracy: up to `0.15`
- Action accuracy: up to `0.30`
- Email coverage: up to `0.10`
- Maximum: `1.0`
---
## Data Models
### Enums
#### ActionType
- `classify` β Classify an email into a category and urgency
- `respond` β Draft a response to an email
- `escalate` β Escalate an email with a reason
- `archive` β Archive an email
- `skip` β Skip the current email
#### Category
- `billing` β Payment, invoices, subscription issues
- `technical` β Bugs, errors, technical failures
- `general` β General inquiries
- `spam` β Unsolicited or irrelevant messages
- `account` β Account access, settings, profile issues
- `feature_request` β Requests for new features
#### Urgency
- `high` β Requires immediate attention
- `medium` β Standard priority
- `low` β Can be handled later
### Models
#### Email
- `id` (`str`) β Unique email identifier
- `subject` (`str`) β Email subject line
- `body` (`str`) β Email body content
- `sender` (`str`) β Sender's email address
- `sender_tier` (`str`, default: `"standard"`) β Customer tier (`standard` or `vip`)
- `received_minutes_ago` (`int`, default: `0`) β How long ago the email was received
#### Action
- `action_type` (`ActionType`) β The action to perform
- `category` (`Category`, optional) β Email category, used with `classify`
- `urgency` (`Urgency`, optional) β Email urgency, used with `classify`
- `response_text` (`str`, optional) β Drafted response, used with `respond`
- `escalation_reason` (`str`, optional) β Reason for escalation, used with `escalate`
- `email_id` (`str`, optional) β Target email ID, used in `support_session` to select which email to process
#### Observation
- `current_email` (`Email`, optional) β The email currently being processed
- `email_queue` (`List[Email]`, default: `[]`) β Queue of pending emails, populated in Task 3 only
- `processed_count` (`int`, default: `0`) β Number of emails processed so far
- `step_count` (`int`, default: `0`) β Current step number
- `task_id` (`str`) β Active task identifier
- `task_description` (`str`) β Human-readable task description
- `available_actions` (`List[str]`) β Actions valid for the current state
- `context` (`Dict`) β Additional context such as `max_steps`, `remaining_steps`, `queue_size`
#### Reward
- `value` (`float`) β Total reward for the step
- `components` (`Dict[str, float]`, default: `{}`) β Breakdown of reward sub-components
- `reason` (`str`, default: `""`) β Human-readable explanation of the reward
#### StepResult
- `observation` (`Observation`) β Next environment observation
- `reward` (`Reward`) β Reward received for the action
- `done` (`bool`) β Whether the episode has ended
- `info` (`Dict`) β Additional diagnostic information
## Backend API
| Method | Path | Description |
|--------|------|-------------|
| `POST` | `/reset?task_id=<id>` | Reset environment for a task, returns initial Observation |
| `POST` | `/step` | Submit an Action, returns `{observation, reward, done, info}` |
| `GET` | `/state` | Current environment state |
| `GET` | `/tasks` | List all tasks with action schema |
| `GET` | `/grader` | Current grader score (0.0β1.0) |
## Baseline Scores
Baseline agent: `gpt-4o-mini` via OpenAI API
| Task | Score | Steps | Total Reward |
|------|-------|-------|--------------|
| Email Classification | 0.930 | 10 | 1.755 |
| Response Drafting | 0.920 | 6 | 1.650 |
| Support Session | 0.882 | 15 | 1.506 |
## Local Development Setup
### Prerequisites
- Python 3.11 or 3.12 (matches the Docker image)
- Optional: [uv](https://docs.astral.sh/uv/) for creating a virtual environment
### Steps
**1. Create and activate a virtual environment**
With uv:
```bash
uv venv --python 3.11
source .venv/bin/activate
```
Or with the standard library:
```bash
python3.11 -m venv .venv
source .venv/bin/activate
```
**2. Install dependencies**
```bash
pip install -r requirements.txt
```
**3. Download NLTK data (one time)**
```bash
python -c "import nltk; nltk.download('vader_lexicon', quiet=True); nltk.download('punkt_tab', quiet=True)"
```
**4. Environment variables**
Copy the example file and edit `.env`:
```bash
cp .env.example .env
```
| Variable | Required for | Description |
|----------|----------------|-------------|
| `API_BASE_URL` | Baseline inference | OpenAI-compatible API base URL (default: Hugging Face router). |
| `MODEL_NAME` | Baseline inference | Model identifier for that API. |
| `HF_TOKEN` | Baseline (HF) | Hugging Face token when using the HF router or similar. |
| `OPENAI_API_KEY` | Baseline (OpenAI) | OpenAI API key when using OpenAIβs API. Inference uses `HF_TOKEN` if set, otherwise `OPENAI_API_KEY`. |
| `ENV_BASE_URL` | Baseline inference | URL of this environment (`http://localhost:7860` locally). |
Running only the API server does not require LLM keys.
**5. Start the server**
```bash
uvicorn server.app:app --host 0.0.0.0 --port 7860 --reload
```
Open `http://localhost:7860/docs` to confirm the API is up.
### Baseline inference
With the server running (step 5) and `.env` configured with LLM credentials, run:
```bash
python inference.py
```
Structured logs go to stdout (`[START]`, `[STEP]`, `[END]`); a JSON summary is printed to stderr.
### Docker
Build and run the same service the Hugging Face Space uses:
```bash
docker build -t sieve .
docker run --rm -p 7860:7860 sieve
```
Then set `ENV_BASE_URL=http://localhost:7860` (or the containerβs URL) for `inference.py`.
|