amirshawn

Results 18 comments of amirshawn

I can confirm it's going on in 0.20.0 It's actually really frustrating. Things are taking a long time. In 0.19.0 I was about to give a response which seemed to...

@mamoodi I am seeing better results, especially at the beginning of a conversation. The farther into the conversation I get the slower everything is running. It's kind of weird because...

Hi @li-boxuan I see 0.20.0 includes your fixes for the custom sandbox image. How do you recommend starting Open Hands with a custom sandbox image?

thank you. I am going to give it a try right now!

@li-boxuan This is the closest I've gotten!! The container built correctly and had access to PHP. The workspace was empty though. I added -e WORKSPACE_BASE= \ I am waiting for...

same issue. I don't see anything in the file browser and when I ask the agent this is the response: It appears that the /workspace directory is currently empty (no...

Should this be working to connect my sandbox? docker run -it --pull=always \ -e SANDBOX_BASE_CONTAINER_IMAGE=laravel-test-02 \ -e WORKSPACE_BASE=/Users/amirshawn/code/marketplace \ -e LOG_ALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands-state:/.openhands-state \ -p 3000:3000...

> > It appears that the /workspace directory is currently empty > > Do you see the same problem when you don't use `-e SANDBOX_BASE_CONTAINER_IMAGE=`? If so, then it's a...

@li-boxuan I tried this: docker run -it --pull=always \ -e LOG_ALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands-state:/.openhands-state \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ docker.all-hands.dev/all-hands-ai/openhands:0.20 same issue,...

I think I see the issue. I should be adding this: -e SANDBOX_USER_ID=$(id -u) \ -e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \ -v $WORKSPACE_BASE:/opt/workspace_base \ and then using the environmental variable. I'm going to...