gpt4docstrings icon indicating copy to clipboard operation
gpt4docstrings copied to clipboard

Generating Python docstrings with OpenAI ChatGPT!!

Results 8 gpt4docstrings issues
Sort by recently updated
recently updated
newest added

``` def setup_logging(level): """ Setup logging. Args: level (int): logging level. Returns: logging.Logger: logger. """ logger = logging.getLogger('secator') logger.setLevel(level) ch = logging.StreamHandler() ch.setLevel(level) formatter = logging.Formatter('%(message)s') ch.setFormatter(formatter) logger.addHandler(ch) return logger...

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.4 to 4.1.0. Release notes Sourced from codecov/codecov-action's releases. v4.1.0 What's Changed fix: set safe directory by @​thomasrockhu-codecov in codecov/codecov-action#1304 build(deps): bump github/codeql-action from 3.24.3 to 3.24.5...

dependencies

I'm getting this error with a brand new API key that shows as "never used": ![Captura de pantalla de 2024-02-24 11 32 44](https://github.com/MichaelisTrofficus/gpt4docstrings/assets/6054951/2e196fee-645d-44a7-9d94-7cbb9f76a298) I also got this same error with...

Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.25.0 to 6.0.0. Release notes Sourced from release-drafter/release-drafter's releases. v6.0.0 What's Changed Update Node.js to 20 (#1379) @​massongit Full Changelog: https://github.com/release-drafter/release-drafter/compare/v5.25.0...v6.0.0 v6.0.0-beta.1 Prerelease of v6, first release...

dependencies

Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. Release notes Sourced from actions/cache's releases. v4.0.0 What's Changed Update action to node20 by @​takost in actions/cache#1284 feat: save-always flag by @​to-s in actions/cache#1242...

dependencies

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. Release notes Sourced from actions/download-artifact's releases. v4.0.0 What's Changed The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts....

dependencies

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. Release notes Sourced from actions/upload-artifact's releases. v4.0.0 What's Changed The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts....

dependencies

Thanks for great library Instead of replacing existin docstring, please do this: `docnew =.doc_gpt4 + "\n" + doc_existing ` So, user can decide after to keep his own docstring info....