Spaces:
Sleeping
Sleeping
| """ | |
| 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", | |
| ] | |