-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strange created filenames. #566
Comments
Works great with the models I've tried. |
I can confirm that the ticks are being created on my windows install. Files created in one of the projects folders:
My setup: Windows 10, Python 3.11.12, running 4a62feb |
Just replace this line in. Validate response function of coder agent |
In
In which file? I have the same Problem. |
Found it under "devika\src\agents\coder\coder.py" |
Hi all, I already made a fix for this on PR #567 over 2 weeks ago: current_file = line.split(":")[1].replace("`", "").strip() We can't just change it back to split on the backtick, as I've seen it where the backticks are not always generated, so it would kick an "index out of range" error. So my solution was to keep the split on the colon, but replace the backticks with empty spaces. Can someone approve PR #567? |
I am using devika on an ubuntu 22.04 LTS machine with a local running ollama with various models.
In principle it is creating files, but the file names are strange like:
tom@tomHome test2 $ ls
'
main.py
'Where can I fix that, so the filename would be main.py?
Originally posted by @tblock-zz in #564
The text was updated successfully, but these errors were encountered: