File size: 918 Bytes
f7c3585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
name: openenv-emailops
version: "0.1.0"
description: "A real-world task environment for email triage and operations, simulating a mock inbox with easy to hard difficulty scenarios."
spec_version: 1.0.0
entrypoint: core.environment:EmailOpsEnv
tags:
  - email
  - triage
  - operations
  - tool-use
tasks:
  - id: easy
    description: "Move the email with the subject 'Invoice' to the 'Finance' folder."
  - id: medium
    description: "Find the unread email from 'boss@company.com', read it, and reply with exactly 'Will do.'."
  - id: hard
    description: "Inbox triage: Delete spam, move Support emails to the 'Support' folder, and flag any email with 'Urgent' in the subject."
observation_schema:
  type: standard_pydantic
  model_path: core.models:Observation
action_schema:
  type: standard_pydantic
  model_path: core.models:Action
reward_schema:
  type: standard_pydantic
  model_path: core.models:RewardInfo