botguard 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ Every LLM application is vulnerable. Attackers can manipulate your chatbot into
|
|
|
27
27
|
|
|
28
28
|
**50 free requests/month** on the Free plan. No credit card required.
|
|
29
29
|
|
|
30
|
-
1. Sign up at [botguard.
|
|
30
|
+
1. Sign up at [botguard.dev](https://botguard.dev)
|
|
31
31
|
2. Create a Shield (takes 10 seconds)
|
|
32
32
|
3. Install the SDK and start protecting your app
|
|
33
33
|
|
|
@@ -45,7 +45,7 @@ npm install botguard openai
|
|
|
45
45
|
import { BotGuard } from 'botguard';
|
|
46
46
|
|
|
47
47
|
const guard = new BotGuard({
|
|
48
|
-
shieldId: 'sh_your_shield_id', // from botguard.
|
|
48
|
+
shieldId: 'sh_your_shield_id', // from botguard.dev dashboard
|
|
49
49
|
apiKey: 'sk-your-openai-key',
|
|
50
50
|
});
|
|
51
51
|
|
|
@@ -108,7 +108,7 @@ Scan LLM responses for harmful content before they reach your users:
|
|
|
108
108
|
- **Hallucination Detection** — Catches fabricated facts, fake URLs, made-up citations
|
|
109
109
|
- **Topic Adherence** — Ensures responses stay within your allowed topics
|
|
110
110
|
|
|
111
|
-
Configure these in your Shield dashboard at botguard.
|
|
111
|
+
Configure these in your Shield dashboard at botguard.dev.
|
|
112
112
|
|
|
113
113
|
### Custom Policies
|
|
114
114
|
|
|
@@ -219,11 +219,11 @@ const guard = new BotGuard({
|
|
|
219
219
|
|
|
220
220
|
All plans include: 4-tier Shield protection, PII detection, output guardrails, custom policies, multi-provider gateway (OpenAI, Anthropic, Google Gemini), streaming support, and email support.
|
|
221
221
|
|
|
222
|
-
Start free at [botguard.
|
|
222
|
+
Start free at [botguard.dev](https://botguard.dev) — no credit card required.
|
|
223
223
|
|
|
224
224
|
## Links
|
|
225
225
|
|
|
226
|
-
- [Dashboard & Shield Setup](https://botguard.
|
|
226
|
+
- [Dashboard & Shield Setup](https://botguard.dev)
|
|
227
227
|
- [GitHub](https://github.com/boazlautman/AgentGuard)
|
|
228
228
|
- [Python SDK (PyPI)](https://pypi.org/project/botguard/)
|
|
229
229
|
|