Kilian Lieret

Results 430 comments of Kilian Lieret

Can you try using `klieret/swe-agent-run` and `klieret/swe-agent` together with `--platform=linux/amd64`? I believe it should work

I.e., ```bash docker pull klieret/swe-agent:latest --platform=linux/amd64 ``` then ``` docker run --rm -it -v /var/run/docker.sock:/var/run/docker.sock \ -v /Users/fuchur/Documents/24/git_sync/swe-agent/keys.cfg:/app/keys.cfg --platform=linux/amd64\ klieret/swe-agent-run:latest \ python run.py --image_name=klieret/swe-agent:latest \ --model_name gpt4 \ --data_path https://github.com/pvlib/pvlib-python/issues/1603...

Duplicate of #67 Edit: Actually let me leave this one open and close the other one because of the more concise questions here ;) I'm unfortunately relatively new to the...

Perhaps we could support a markdown file with a yaml header with metadata? Something like ``` --- local_repo_path: ... setup_command: ... # allow to install things in the container ---...

Adding additional command line options comes with a price though: The `run.py` interface is already complex. If we add more options that are only _sometimes_ relevant, it will lead to...

I think the split-into-subcommands approach is actually the best one. Every other strategy will run into a wall eventually. It would also get more convenient than our current setup, once...

@cschubiner You can already check out #193 and run it locally. It will be merged very soon.

What's your OS? In #17, @cpendery mentioned that `signal.alarm` are UNIX specific. I'll see if we can get a solution today

You can now run swe-agent in a docker container on Windows. We still hope to have it run natively on Windows as well soon