gtsop-d
gtsop-d
Had exactly the same problem, I tried adding `--add-host host.docker.internal:host-gateway` and `--network="host"` in the docker run command. Worked for me, running on linux. https://stackoverflow.com/questions/24319662/from-inside-of-a-docker-container-how-do-i-connect-to-the-localhost-of-the-mach
Which OS are you running? Just to verify, the command I am running is this: ``` export LLM_API_KEY="" export LLM_MODEL="ollama/mistal:7b" export LLM_EMBEDDING_MODEL="mistral:7b" export LLM_BASE_URL="http://localhost:11434" export WORKSPACE_DIR="$(pwd)/workspace" docker run \ -e...
The fact that you went from step 0 to step 1 means you got a response from your local LLM, so your initial error seems resolved. The fact that you...