ai-gateway-kit 0.1.0 → 0.1.2

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,13 +45,13 @@ It does **not** provide prompt templates, product policies, UI, or agent logic.
45
45
  ## Install
46
46
 
47
47
  ```bash
48
- npm install @your-scope/ai-gateway-kit
48
+ npm install ai-gateway-kit
49
49
  ```
50
50
 
51
51
  ## Quick start
52
52
 
53
53
  ```ts
54
- import { createAIGateway } from "@your-scope/ai-gateway-kit";
54
+ import { createAIGateway } from "ai-gateway-kit";
55
55
 
56
56
  const gateway = createAIGateway({
57
57
  models: [
@@ -83,8 +83,8 @@ console.log(result.output);
83
83
 
84
84
  ## Providers
85
85
 
86
- - GitHub Models: see `@your-scope/ai-gateway-kit/providers/github-models`
87
- - Gemini: see `@your-scope/ai-gateway-kit/providers/gemini`
86
+ - GitHub Models: see `ai-gateway-kit/providers/github-models`
87
+ - Gemini: see `ai-gateway-kit/providers/gemini`
88
88
  - Custom provider: implement `ProviderAdapter`
89
89
 
90
90
  ## Observability hooks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-gateway-kit",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Provider-agnostic AI gateway with capability-based routing, in-memory rate limiting, and observability hooks.",
5
5
  "license": "MIT",
6
6
  "author": "Utkarsh Mehta",