File size: 1,256 Bytes
d814291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
name: osint-openenv
version: 0.1.0
description: Synthetic OSINT benchmark environment exposed over HTTP.
tasks:
  - id: seed_task_0
    difficulty: easy
    max_steps: 24
    grader:
      type: difficulty_exact_match
      answer_type: node_id
      case_sensitive: true
      reward_profile: easy
  - id: seed_task_10
    difficulty: medium
    max_steps: 24
    grader:
      type: difficulty_exact_match
      answer_type: node_id
      case_sensitive: true
      reward_profile: medium
  - id: seed_task_20
    difficulty: hard
    max_steps: 24
    grader:
      type: difficulty_exact_match
      answer_type: node_id
      case_sensitive: true
      reward_profile: hard
transport:
  type: http
  base_path: /
endpoints:
  health:
    method: GET
    path: /health
  metadata:
    method: GET
    path: /api/environment
  tasks:
    method: GET
    path: /openenv/tasks
  reset:
    method: POST
    path: /reset
  step:
    method: POST
    path: /step
  state:
    method: GET
    path: /state
models:
  action_space:
    - CALL_TOOL
    - ADD_EDGE
    - ANSWER
  task_fields:
    - task_id
    - task_type
    - question
    - difficulty
    - grader
  observation_fields:
    - tool_outputs
    - graph_snapshot
    - action_history
    - task