Update server/echo_environment.py
Browse files
server/echo_environment.py
CHANGED
|
@@ -43,6 +43,8 @@ class EchoEnvironment(Environment):
|
|
| 43 |
>>> print(obs.message_length) # 5
|
| 44 |
"""
|
| 45 |
|
|
|
|
|
|
|
| 46 |
def __init__(self):
|
| 47 |
"""Initialize the echo environment."""
|
| 48 |
self._state = State(episode_id=str(uuid4()), step_count=0)
|
|
|
|
| 43 |
>>> print(obs.message_length) # 5
|
| 44 |
"""
|
| 45 |
|
| 46 |
+
SUPPORTS_CONCURRENT_SESSIONS: bool = True
|
| 47 |
+
|
| 48 |
def __init__(self):
|
| 49 |
"""Initialize the echo environment."""
|
| 50 |
self._state = State(episode_id=str(uuid4()), step_count=0)
|