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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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.app](https://botguard.app)
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.app dashboard
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.app.
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.app](https://botguard.app) — no credit card required.
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.app)
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botguard",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "BotGuard SDK — secure your LLM applications with multi-tier threat detection",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",