from Hacker News

Show HN: Lluminy – automate code comments for Python projects

by knivets on 12/31/24, 10:50 PM with 1 comments

Hi everyone!

I built lluminy to solve the pain of documenting Python code. It:

- Uses LLama 3.3 to generate code comments

- To avoid code hallucinations, it parses Python files into AST, and only modifies function docstrings

- Integrates with GitHub (submits results as pull requests)

- Handles projects of any size with minimal setup

Try it out: https://lluminy.com

Here's what I'm planning to work on next:

- Automatic documentation suggestions on GitHub PRs

- Sphinx integration

- Support for more languages (JavaScript and others)

- Alternative LLM options

Looking forward to feedback from the HN community!

  • by debarshri on 12/31/24, 11:46 PM

    Hey just had a quick look. Now days github copilot or any other coding assist generates comments automatically. Is it different from those tools, if yes, would love to understand what's different.