Spaces:
Sleeping
Sleeping
File size: 502 Bytes
1779f34 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """Client for the FSDS cleaning environment."""
from openenv.core.mcp_client import MCPToolClient
class FSDSCleaningEnv(MCPToolClient):
"""Client wrapper for the FSDS cleaning environment.
Usage:
from fsds_cleaning_env import FSDSCleaningEnv
with FSDSCleaningEnv(base_url="https://<space>.hf.space").sync() as env:
env.reset(task_id="ecommerce_mobile")
tools = env.list_tools()
result = env.call_tool("get_task_brief")
"""
pass
|