This is a static code analysis tool based on Google PaLM. Try our web demo.
We built an IDE extension, so that you can improve your code without referring to a language model explicitly.
In order to run this in your IDE, you need to get credentials from Goodle Cloud Vertex AI. Please check their documentation.
Once you get a credentials JSON file, clone this repository, and put the file inside it.
git clone https://github.com/romech/vertex-code-analysis.git
Next, create and activate your Python environment. After that, install this module:
cd vertex-code-analysis
pip install -e .
Verify it works:
vertex_analyse path/to/some/code.py
It should print a few lines of code improvement suggestions.
-
Copy .vscode/tasks.json to your workspace.
-
Replace
command
with your Python executable. You can find it by runningwhich python
. -
Open Keyboard Shortcuts JSON, add the following item:
{ "key": "cmd+h", "command": "workbench.action.tasks.runTask", "when": "editorTextFocus", "args": "Vertex Code Analysis" }
-
That's it!
The language model that we're using here (chat-bison
) seems not really suitable for real use, because it does not provide sufficient quality. Maybe larger models would be appropriate, but at the moment we do not have access to anything else.
This project was developed during an event "Google Cloud Vertex AI Hackathon", by Roman and Dainius.