Aleksandar
Aleksandar
@zlw123 You will need to use `ollama/llama3` as name 1. The gear is in the bottom right 2. The modal in the UI. You might need to type **ollama/llama3** because...
@enyst This is from my terminal log ```bash INFO: connection open Starting loop_recv for sid: 1120a483-1c24-427d-b1fc-a06942e70053 INFO: 192.168.65.1:64810 - "GET /api/refresh-files HTTP/1.1" 200 OK 15:20:23 - opendevin:INFO: agent.py:144 - Creating...
@suoko you might need to add `-e SANDBOX_USER_ID=$(id -u)` as well. From the newest README.md [here](https://github.com/OpenDevin/OpenDevin?tab=readme-ov-file#-quick-start)
For the moment I rewrite the `poll` function to allow manually to send message for refetch. ```elixir def poll(opts) do interval = opts[:time_interval] receive do :clean_cache_and_refetch -> EtsCache.set_status(:refresh) _ =...
I am looking forward to completion as well!
I was thinking to add **LLM_EMBEDDING_BASE_URL** and to use this in the **memory.py** [here](https://github.com/OpenDevin/OpenDevin/blob/main/agenthub/monologue_agent/utils/memory.py#L58). However, I am not sure if you are fine with doing that. I can make small...
Running on this branch with ```bash export WORKSPACE_DIR=/Users/myuser/code/workspace docker run \ --pull=always \ -e LLM_API_KEY \ -e WORKSPACE_MOUNT_PATH=$WORKSPACE_DIR \ -v $WORKSPACE_DIR:/opt/workspace_base \ -v /var/run/docker.sock:/var/run/docker.sock \ -p 2000:3000 \ --add-host host.docker.internal=host-gateway...
@rbren thank you! I pulled the newest version of this branch and all worked perfect with **ollama/llama3:8b-instruct-q8_0**. log details ```bash ❯ export WORKSPACE_DIR=/Users/isavita/code/workspace docker run \ --pull=always \ -e SANDBOX_USER_ID=$(id...
@rbren I suspected it to be a design decision, but I was testing some functionalities with a less capable local model, which struggled with certain tasks. I needed to manually...