diff --git a/backend/sandbox/sandbox.py b/backend/sandbox/sandbox.py index 3a62d424..18f618b7 100644 --- a/backend/sandbox/sandbox.py +++ b/backend/sandbox/sandbox.py @@ -97,7 +97,7 @@ def create_sandbox(password: str): sandbox = daytona.create(CreateSandboxParams( image="adamcohenhillel/kortix-suna:0.0.16", - public=False, + public=True, env_vars={ "CHROME_PERSISTENT_SESSION": "true", "RESOLUTION": "1280x720x24", @@ -112,11 +112,10 @@ def create_sandbox(password: str): "CHROME_CDP": "" }, ports=[ - # 7788, # Gradio default port 6080, # noVNC web interface - # 5900, # VNC port - # 5901, # VNC port - # 9222, # Chrome remote debugging port + 5900, # VNC port + 5901, # VNC port + 9222, # Chrome remote debugging port 8080 # HTTP website port ] ))