File size: 567 Bytes
81aa69d
 
 
 
 
 
 
3932d4b
81aa69d
 
 
 
 
6c591d0
81aa69d
3932d4b
81aa69d
 
 
 
 
 
 
 
6c591d0
81aa69d
 
 
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
"""
Customer Support Ticket Resolution Environment — OpenEnv

A production-ready environment for training AI agents to handle
real-world customer support scenarios.
"""

from .models import (
    SupportAction,
    SupportObservation,
    SupportState,
    RewardBreakdown,
    StepResult,
    safe_score,
)
from .server.environment import CustomerSupportEnvironment

__all__ = [
    "CustomerSupportEnvironment",
    "SupportAction",
    "SupportObservation",
    "SupportState",
    "RewardBreakdown",
    "StepResult",
    "safe_score",
]

__version__ = "1.0.0"