AlgoCore commited on
Commit
9302f63
Β·
1 Parent(s): 7666690

Fix metadata

Browse files
Files changed (1) hide show
  1. server/support_environment.py +10 -0
server/support_environment.py CHANGED
@@ -48,6 +48,16 @@ class SupportTicketEnvironment(Environment):
48
  self._queue: list[dict] = []
49
  self._tickets_resolved: int = 0
50
  self._tickets_total: int = 1
 
 
 
 
 
 
 
 
 
 
51
 
52
  # ──────────────────────── reset ────────────────────────────
53
 
 
48
  self._queue: list[dict] = []
49
  self._tickets_resolved: int = 0
50
  self._tickets_total: int = 1
51
+
52
+ def get_metadata(self):
53
+ from openenv.core.env_server.types import EnvironmentMetadata
54
+ return EnvironmentMetadata(
55
+ name="support_ticket_env",
56
+ description="A real-world customer support ticket triage environment where an AI agent classifies tickets, selects actions, and resolves queues.",
57
+ version="1.0.0",
58
+ author="AlgoCore",
59
+ documentation_url="https://github.com/TryingHardToBeDeveloper/support-ticket-env",
60
+ )
61
 
62
  # ──────────────────────── reset ────────────────────────────
63