CarperAI / InstructGPT

For experiments involving instruct gpt. Currently used for documenting open research questions.
MIT License
71 stars 3 forks source link

[task] Interactive Debugging #6

Open jon-tow opened 1 year ago

jon-tow commented 1 year ago

🚀 The Task

Minimize stack traces, locate bugs, use GDB/PDB, and produce failing test cases from a crash.

Example

Locate the bug from the following stack trace and suggest a fix:

Stack Trace:

Traceback (most recent call last):
  File "example.py", line 1, in <module>
    import xyz
ModuleNotFoundError: No module named 'xyz'

Fix:

Additional Notes