core-identity-env / server /__init__.py
hirann
Add Core Identity environment for OpenEnv
1f9fc8c
raw
history blame contribute delete
552 Bytes
from core_identity_env.server.core_identity_environment import CoreIdentityEnvironment
from core_identity_env.models import CoreIdentityAction, CoreIdentityObservation
def create_app():
"""Create and configure the FastAPI application for the Core Identity Environment."""
from openenv.core.env_server.http_server import create_app as create_openenv_app
return create_openenv_app(
CoreIdentityEnvironment,
CoreIdentityAction,
CoreIdentityObservation,
env_name="core_identity_env",
)
app = create_app()