gpt-engineer
gpt-engineer copied to clipboard
Inconsistent handling of file paths in 'gpt-engineer/main.py'
The code constructs file paths using different approaches, which can lead to inconsistency and potential errors. For example, the memory_path and workspace_path variables are created using Path objects, while the identity path is constructed using Path(os.path.curdir). It is advisable to use a consistent method, either Path or os.path, throughout the codebase to maintain clarity and prevent issues related to file path manipulation.
Would you be interested on creating a PR with those changes?
solved ✅