Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for google's Gemini and ollama #15

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ This tool is designed to analyze a GitHub repository for potential remotely expl
### Command Line Interface

```
usage: vulnhuntr.py [-h] -r ROOT [-a ANALYZE] [-l {claude,gpt}] [-v]
usage: vulnhuntr.py [-h] -r ROOT [-a ANALYZE] [-l {claude,gpt,ollama,gemini}] [-v]
Analyze a GitHub project for vulnerabilities. Export your ANTHROPIC_API_KEY before running.
Expand All @@ -86,13 +86,13 @@ options:
-r ROOT, --root ROOT Path to the root directory of the project
-a ANALYZE, --analyze ANALYZE
Specific path or file within the project to analyze
-l {claude,gpt}, --llm {claude,gpt}
-l {claude,gpt,ollama,gemini}, --llm {claude,gpt,ollama,gemini}
LLM client to use (default: claude)
-v, --verbosity Increase output verbosity (-v for INFO, -vv for DEBUG)
```
### Example

Export your `ANTHROPIC_API_KEY` or `OPENAI_API_KEY` before running.
Export your `ANTHROPIC_API_KEY` or `OPENAI_API_KEY` or `GEMINI_API_KEY` before running.

Analyze the entire repository using Claude:

Expand Down
Loading