File size: 879 Bytes
e6a02dd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""
SalesPath — OpenEnv RL environment for B2B sales agents.

Public API
----------
    from salespath_env import (
        SalesPathEnvironment,
        SalesPathClient,
        SalesPathAction,
        SalesPathObservation,
        SalesPathState,
        SalesPathRubric,
    )
"""

from .client import SalesPathClient
from .models import (
    SalesPathAction,
    SalesPathObservation,
    SalesPathState,
    VALID_ACTIONS,
)
from .server.salespath_environment import SalesPathEnvironment
from .server.reward import SalesPathRubric, compute_reward
from .server.rules import BUSINESS_RULES, check_rules

__version__ = "0.2.0"

__all__ = [
    "SalesPathEnvironment",
    "SalesPathClient",
    "SalesPathAction",
    "SalesPathObservation",
    "SalesPathState",
    "SalesPathRubric",
    "VALID_ACTIONS",
    "BUSINESS_RULES",
    "check_rules",
    "compute_reward",
]