Jonathan Hoffman

Results 15 comments of Jonathan Hoffman

When using the Git Repo, everything works but not when installing the PyPi Package. ```shell poetry add git+https://github.com/jazzband/django-newsletter.git ```

Got the same error: ``` IsADirectoryError: [Errno 21] Is a directory: 'generated/app/' ```

# The fix In the `write_file` function Before: ```python with open(file_path, "w") as file: # Write content to the file file.write(filecode) ``` After: ```Python if not file_path.endswith("/"): with open(file_path, "w")...

1. Changed the default model to rather be GPT3.5 because most people do not have access to GPT4. 2. The check was added to address issue https://github.com/smol-ai/developer/issues/26