@kenkaiiii/gg-ai 4.3.55 → 4.3.56
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/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1654,6 +1654,12 @@ providerRegistry.register("moonshot", {
|
|
|
1654
1654
|
baseUrl: options.baseUrl ?? "https://api.moonshot.ai/v1"
|
|
1655
1655
|
})
|
|
1656
1656
|
});
|
|
1657
|
+
providerRegistry.register("deepseek", {
|
|
1658
|
+
stream: (options) => streamOpenAI({
|
|
1659
|
+
...options,
|
|
1660
|
+
baseUrl: options.baseUrl ?? "https://api.deepseek.com/v1"
|
|
1661
|
+
})
|
|
1662
|
+
});
|
|
1657
1663
|
providerRegistry.register("openrouter", {
|
|
1658
1664
|
stream: (options) => streamOpenAI({
|
|
1659
1665
|
...options,
|