Arno.Edwards

Results 60 comments of Arno.Edwards

1. log indicates that error occurs in `llm_connection.py line 344` which is `pilot/utils/llm_connection.py`. In here, you see there's a custom decorator `retry_on_exception` that handles retry. Core statement is I will...

> go to `"/home/mijhaels/Documentos/git/gpt-pilot/pilot/helpers/Project.py",` and set the line 216 to > > `file_content = open(full_path, 'r', encoding='iso-8859-1').read()` @Scratch-project I have added `utf-8` encoding in #257 , i think that's enough...

In the lase picture, Pilot do need to help to confirm. It would be a great help for us to look at your logger/debug.log to see what happened. But `accelerate...

```python def validate_filename(filename: str) -> str: # Regular expression to check for valid filename if not re.match(r'^[\w\-]+$', filename): raise HTTPException(status_code=400, detail="Invalid filename format.") # Check for path traversal characters if...

FYI. ```python {"action": "initialize", "args": {"agent_cls": "PlannerAgent"}} Message from server: {"action":"initialize","message":"Control loop started."} ``` ``` {"action": "start", "args": {"task": "write a hello world in python"}} Message from server: {"message":"Starting new...

- If you are using `linux` Reference [here](https://github.com/docker/compose/issues/10299#issuecomment-1438247730) your problem seems to lie in the fact that you are not allowed to access the `socket /var/run/docker.sock`. Commonly this socket is...

@MEEP00H To add a user to the Docker group on macOS, you can use the following commands in the Terminal. Replace `your-user-name` with your actual macOS username: ```bash sudo dseditgroup...

close #981 ![image](https://github.com/PierrunoYT/OpenDevin/assets/138990495/e5304bd2-7fc7-4fbb-8c91-8324c7a0c62a)

@evrenyal That's strange, i can't re-produce your error. ```bash export LLM_MODEL="ollama/gemma:2b" export LLM_API_KEY="ollama" export LLM_EMBEDDING_MODEL="local" export WORKSPACE_DIR="./workspace" export LLM_BASE_URL="http://localhost:11434" ``` `python main.py --task "write a bash script that prints hello"`...

@rbren I think the problem here is not the connection issue. I think using `docker-compose` may be a good way to avoid network issue since `ollama` also have a docker...