Jonathan Hoffman
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
This would be great!
Hi @carltongibson , Thanks for the prompt response. Do you have examples of how to use the above or links to docs?
> This should be easily fixable on my end by including the sourcemap as well. Does this crash your app or is it just a warning? Same issue for me...
``` ❯ poetry add django_neomodel Using version ^0.1.0 for django-neomodel Updating dependencies Resolving dependencies... (1.9s) Because no versions of django-neomodel match >0.1.0,=2.2,=0.1.0,=2.2,=3.2) and no versions of django-filter match >23.2,=0.1.0,=23.2,
Thank you @clayms ! Legend! Works like a charm.