wolverine
wolverine copied to clipboard
`pysnooper.snoop()` is a decorator that helps automate printf style debugging: example ```python import pysnooper @pysnooper.snoop() def number_to_bits(number): if number: bits = [] while number: number, remainder = divmod(number, 2) bits.insert(0,...
[](https://asciinema.org/a/MNAymUTJpn52FPCYZxd6uzXtv)
- Modified the code to ask for changes to be applied. If user say yes then it will make the changes to base file or else code will stop running.
moved openai key to a function call for easier calling
wasn't able to run without having access to gpt4, i added a little function that choses automatically gpt3
_In this pull request, we begin to address Initiative #3 `a suite of example buggy files that we can test prompts on to ensure reliability and measure improvement` as mentioned...
# Some ideas for Future Features 1. Configuration file: Add support for a configuration file where users can specify their API key, default model, and other settings, making it easier...
Now, the script includes logging statements to record various actions, such as applying or rejecting changes, script success, or script crash. The log messages are written to a file named...
In the latest update, several flags have been introduced to enhance the parsing capability and facilitate future usage of the program. Additionally, to address security concerns and adhere to the...
This project seems great if combined with CI/CD process. For example... 1. User upload project with test codes 2. CI workflow, such as GitHub Action, run tests on top of...