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.
- package/README.md +4 -4
- 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
|
|
48
|
+
npm install ai-gateway-kit
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
## Quick start
|
|
52
52
|
|
|
53
53
|
```ts
|
|
54
|
-
import { createAIGateway } from "
|
|
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
|
|
87
|
-
- Gemini: see
|
|
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