We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a80b646 commit 4bc6d64Copy full SHA for 4bc6d64
1 file changed
README.md
@@ -50,10 +50,18 @@ pip install -e .
50
51
## Configuration
52
53
-Set your provider credentials before running scans:
+Set your model and provider credentials before running scans:
54
55
```bash
56
-# Example for DeepSeek via Nebius
+# OpenAI
57
+export SECNODE_LLM="openai/gpt-4o"
58
+export OPENAI_API_KEY="your-api-key"
59
+
60
+# Anthropic
61
+export SECNODE_LLM="anthropic/claude-3-5-sonnet-20241022"
62
+export ANTHROPIC_API_KEY="your-key"
63
64
+# Nebius (OAI-Compatible)
65
export SECNODE_LLM="nebius/deepseek-ai/DeepSeek-V3.2"
66
export NEBIUS_API_KEY="your-key"
67
export NEBIUS_API_BASE="https://api.tokenfactory.nebius.com/v1/"
0 commit comments