Spaces:
Runtime error
Runtime error
File size: 238 Bytes
ab65ac6 | 1 2 3 4 5 6 7 8 9 | """Client for AEGIS-Env server."""
from openenv import EnvClient
def get_client(repo_id: str = "YashashMathur/AEGIS-ENV") -> EnvClient:
"""Get an EnvClient connected to the AEGIS-Env Space."""
return EnvClient(repo_id=repo_id)
|