Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files
envs/dm_control_env/pyproject.toml
CHANGED
|
@@ -15,7 +15,7 @@ description = "dm_control Environment for OpenEnv - wraps MuJoCo-based continuou
|
|
| 15 |
requires-python = ">=3.10"
|
| 16 |
dependencies = [
|
| 17 |
# Core OpenEnv dependencies
|
| 18 |
-
"openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git
|
| 19 |
"fastapi>=0.115.0",
|
| 20 |
"pydantic>=2.0.0",
|
| 21 |
"uvicorn>=0.24.0",
|
|
|
|
| 15 |
requires-python = ">=3.10"
|
| 16 |
dependencies = [
|
| 17 |
# Core OpenEnv dependencies
|
| 18 |
+
"openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git",
|
| 19 |
"fastapi>=0.115.0",
|
| 20 |
"pydantic>=2.0.0",
|
| 21 |
"uvicorn>=0.24.0",
|
pyproject.toml
CHANGED
|
@@ -15,7 +15,7 @@ description = "dm_control Environment for OpenEnv - wraps MuJoCo-based continuou
|
|
| 15 |
requires-python = ">=3.10"
|
| 16 |
dependencies = [
|
| 17 |
# Core OpenEnv dependencies
|
| 18 |
-
"openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git
|
| 19 |
"fastapi>=0.115.0",
|
| 20 |
"pydantic>=2.0.0",
|
| 21 |
"uvicorn>=0.24.0",
|
|
|
|
| 15 |
requires-python = ">=3.10"
|
| 16 |
dependencies = [
|
| 17 |
# Core OpenEnv dependencies
|
| 18 |
+
"openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git",
|
| 19 |
"fastapi>=0.115.0",
|
| 20 |
"pydantic>=2.0.0",
|
| 21 |
"uvicorn>=0.24.0",
|
src/core/env_server/interfaces.py
CHANGED
|
@@ -6,7 +6,9 @@
|
|
| 6 |
|
| 7 |
import inspect
|
| 8 |
from abc import ABC, abstractmethod
|
| 9 |
-
from typing import Any, Generic, Optional, Protocol,
|
|
|
|
|
|
|
| 10 |
|
| 11 |
from .types import Action, Observation, State, EnvironmentMetadata
|
| 12 |
|
|
|
|
| 6 |
|
| 7 |
import inspect
|
| 8 |
from abc import ABC, abstractmethod
|
| 9 |
+
from typing import Any, Generic, Optional, Protocol, TypeVar, TYPE_CHECKING
|
| 10 |
+
|
| 11 |
+
from typing_extensions import TypedDict
|
| 12 |
|
| 13 |
from .types import Action, Observation, State, EnvironmentMetadata
|
| 14 |
|
src/core/openenv/core/env_server/interfaces.py
CHANGED
|
@@ -6,7 +6,9 @@
|
|
| 6 |
|
| 7 |
import inspect
|
| 8 |
from abc import ABC, abstractmethod
|
| 9 |
-
from typing import Any, Generic, Optional, Protocol,
|
|
|
|
|
|
|
| 10 |
|
| 11 |
from .types import Action, Observation, State, EnvironmentMetadata
|
| 12 |
|
|
|
|
| 6 |
|
| 7 |
import inspect
|
| 8 |
from abc import ABC, abstractmethod
|
| 9 |
+
from typing import Any, Generic, Optional, Protocol, TypeVar, TYPE_CHECKING
|
| 10 |
+
|
| 11 |
+
from typing_extensions import TypedDict
|
| 12 |
|
| 13 |
from .types import Action, Observation, State, EnvironmentMetadata
|
| 14 |
|
src/openenv/core/env_server/interfaces.py
CHANGED
|
@@ -6,7 +6,9 @@
|
|
| 6 |
|
| 7 |
import inspect
|
| 8 |
from abc import ABC, abstractmethod
|
| 9 |
-
from typing import Any, Generic, Optional, Protocol,
|
|
|
|
|
|
|
| 10 |
|
| 11 |
from .types import Action, Observation, State, EnvironmentMetadata
|
| 12 |
|
|
|
|
| 6 |
|
| 7 |
import inspect
|
| 8 |
from abc import ABC, abstractmethod
|
| 9 |
+
from typing import Any, Generic, Optional, Protocol, TypeVar, TYPE_CHECKING
|
| 10 |
+
|
| 11 |
+
from typing_extensions import TypedDict
|
| 12 |
|
| 13 |
from .types import Action, Observation, State, EnvironmentMetadata
|
| 14 |
|