File size: 6,649 Bytes
c492c3f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# πŸ“„ API_CONTRACT.md β€” API Specification & Schemas

---

## 🧠 Overview

This document defines the **API contract** for the moderation environment.

All endpoints:

* follow REST principles
* return JSON responses
* are deterministic and reproducible
* align with OpenEnv requirements

---

## 🌐 Base URL

```text
http://localhost:8000
```

(Will be deployed on Hugging Face Spaces)

---

## πŸ“Œ Endpoints Summary

| Endpoint      | Method | Description                            |
| ------------- | ------ | -------------------------------------- |
| `/reset`      | POST   | Initialize a new episode               |
| `/step`       | POST   | Apply an action                        |
| `/state`      | GET    | Get current state                      |
| `/tasks`      | GET    | List available tasks                   |
| `/grader`     | GET    | Get score for current episode          |
| `/baseline`   | GET    | Run rule-based baseline agent          |
| `/agent/run`  | POST   | Run Gemini 2.5 Flash agent πŸ”Ή Added   |
| `/health`     | GET    | Liveness check                         |

---

# πŸš€ 1. `/reset`

### Description

Initializes a new episode.

---

### Request

```json
{
  "task": "easy | medium | hard",
  "seed": 42
}
```

---

### Response

```json
{
  "state": {
    "post_content": "...",
    "user_history": [...],
    "reports": ...,
    "engagement": "...",
    "geo": "...",
    "available_context": []
  },
  "available_actions": [
    "fetch_user_history",
    "fetch_thread_context",
    "check_policy_clause",
    "mark_violation_type",
    "allow",
    "flag",
    "remove",
    "escalate"
  ],
  "done": false
}
```

---

# πŸ”„ 2. `/step`

### Description

Executes one action in the environment.

---

### Request

```json
{
  "action": "fetch_user_history",
  "parameters": {
    "violation_type": "misinformation"
  }
}
```

---

### Response

```json
{
  "state": {
    "post_content": "...",
    "user_history": [...],
    "reports": ...,
    "engagement": "...",
    "geo": "...",
    "thread_context": [...],
    "policy_context": "...",
    "predicted_violation": "..."
  },
  "reward": 0.2,
  "done": false,
  "info": {
    "step": 2,
    "message": "User history fetched"
  }
}
```

---

# πŸ“Š 3. `/state`

### Description

Returns current environment state without taking action.

---

### Request

```json
{}
```

---

### Response

```json
{
  "state": {...},
  "step_count": 3,
  "done": false
}
```

---

# πŸ“‹ 4. `/tasks`

### Description

Returns available tasks and action schema.

---

### Response

```json
{
  "tasks": [
    {
      "name": "easy",
      "description": "Clear violations"
    },
    {
      "name": "medium",
      "description": "Ambiguous moderation"
    },
    {
      "name": "hard",
      "description": "Contextual + geo-aware"
    }
  ],
  "action_schema": {
    "action": "string",
    "parameters": "object (optional)"
  }
}
```

---

# πŸ§ͺ 5. `/grader`

### Description

Returns score for completed episode.

---

### Response

```json
{
  "score": 0.82,
  "breakdown": {
    "final_action": 1.0,
    "violation": 1.0,
    "investigation": 0.66,
    "efficiency": 0.8
  },
  "steps_taken": 4,
  "max_steps": 7
}
```

---

# πŸ€– 6. `/baseline`

### Description

Runs the rule-based baseline agent on a task and returns the graded result.

### Query Parameters

| Param     | Type   | Default             | Description     |
| --------- | ------ | ------------------- | --------------- |
| `task_id` | string | `easy_harassment`   | Task to run     |
| `seed`    | int    | task default        | Optional seed   |

### Response

```json
{
  "task_id": "easy_harassment",
  "seed": 42,
  "score": {
    "final_action_score": 1.0,
    "classification_score": 1.0,
    "investigation_score": 1.0,
    "efficiency_score": 0.5,
    "total": 0.875,
    "breakdown": {}
  },
  "trajectory": [...]
}
```

---

# 🧠 7. `/agent/run` β€” πŸ”Ή Added

### Description

Runs the **Gemini 2.5 Flash LLM agent** on a full episode.
Requires `GOOGLE_API_KEY` or `GEMINI_API_KEY` in the server environment.

### Method: `POST`

### Request Body

```json
{
  "task_id": "hard_misinformation",
  "seed": 777
}
```

### Response

```json
{
  "task_id": "hard_misinformation",
  "seed": 777,
  "score": {
    "final_action_score": 1.0,
    "classification_score": 1.0,
    "investigation_score": 1.0,
    "efficiency_score": 0.43,
    "total": 0.88,
    "breakdown": {...}
  },
  "trajectory": [
    { "step": 1, "action": {"action_type": "fetch_user_history", "parameters": {}}, "reward": 0.2, "reward_reason": "..." },
    ...
  ]
}
```

### Error: Missing API Key

```json
{ "detail": "GOOGLE_API_KEY or GEMINI_API_KEY environment variable is required..." }
```
HTTP 500

---

# 🧾 Action Definitions

---

## πŸ” Investigation Actions

| Action               | Parameters  | Description                   |
| -------------------- | ----------- | ----------------------------- |
| fetch_user_history   | none        | Retrieve user past activity   |
| fetch_thread_context | none        | Retrieve conversation context |
| check_policy_clause  | {clause_id} | Retrieve policy info          |

---

## 🧠 Classification Actions

| Action              | Parameters | Description                |
| ------------------- | ---------- | -------------------------- |
| mark_violation_type | {type}     | Predict violation category |

---

## 🎯 Decision Actions

| Action   | Parameters | Description          |
| -------- | ---------- | -------------------- |
| allow    | none       | Approve content      |
| flag     | none       | Mark for review      |
| remove   | none       | Remove content       |
| escalate | none       | Send to human review |

---

# ⚠️ Error Handling

---

## Invalid Action

```json
{
  "error": "Invalid action",
  "reward": -0.2
}
```

---

## Episode Already Complete

```json
{
  "error": "Episode finished",
  "done": true
}
```

---

## Missing Parameters

```json
{
  "error": "Missing required parameter: violation_type"
}
```

---

# πŸ” State Schema

```json
{
  "post_content": "string",
  "user_history": "array",
  "reports": "integer",
  "engagement": "low | medium | high",
  "geo": "string",
  "thread_context": "array",
  "policy_context": "string",
  "predicted_violation": "string",
  "final_action": "string"
}
```

---

# 🧠 Design Principles

* consistent request/response format
* explicit state representation
* deterministic outputs
* minimal ambiguity

---

## 🧠 One-Line Summary

> A clean, deterministic API contract enabling structured interaction between agent and moderation environment.

---