Spaces:
Sleeping
Sleeping
File size: 615 Bytes
fdd6ae0 | 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 | name: expert-negotiation-env
version: "1.0.0"
description: "Multi-agent negotiation environment for training LLM stakeholder alignment"
tasks:
- name: constraint_discovery
difficulty: easy
max_steps: 5
- name: draft_compromise
difficulty: medium
max_steps: 10
- name: shifting_goalpost
difficulty: hard
max_steps: 15
action_space:
type: structured
fields:
- name: action_type
type: string
- name: target
type: string
- name: content
type: string
observation_space:
type: structured
fields:
- feedback
- current_turn
- reward
- done |