Spaces:
Sleeping
Sleeping
| """ | |
| content_moderation_env package | |
| =============================== | |
| Exposes the public API for ContentModerationEnv. | |
| Importing this package gives you: | |
| from content_moderation_env_pkg import ContentModerationEnv | |
| from content_moderation_env_pkg.models import AgentAction, Observation, StepResult | |
| """ | |
| from content_moderation_env import ContentModerationEnv # noqa: F401 | |
| from models import ( # noqa: F401 | |
| Observation, | |
| AgentAction, | |
| StepResult, | |
| StepInfo, | |
| ScoreBreakdown, | |
| GroundTruth, | |
| Label, | |
| ModerationAction, | |
| PlatformPolicy, | |
| Tier, | |
| Scenario, | |
| ) | |
| __version__ = "1.0.0" | |
| __all__ = [ | |
| "ContentModerationEnv", | |
| "Observation", | |
| "AgentAction", | |
| "StepResult", | |
| "StepInfo", | |
| "ScoreBreakdown", | |
| "GroundTruth", | |
| "Label", | |
| "ModerationAction", | |
| "PlatformPolicy", | |
| "Tier", | |
| "Scenario", | |
| ] | |