CoolFace
Apppublic

Restricto/module1

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
models.py10 linesDownload Raw Back to root
1from openenv.core.env_server.mcp_types import CallToolAction, ListToolsAction
2from openenv.core.env_server.types import Action, Observation, State
3from typing import Union
4
5# Define the allowed actions for this environment
6EchoAction = Union[CallToolAction, ListToolsAction]
7
8# The standard Observation and State types from OpenEnv
9EchoObservation = Observation
10EchoState = State