@mclean-capital/neura 3.2.0 → 3.3.0
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/core/server.bundled.mjs +2 -1
- package/core/server.bundled.mjs.map +2 -2
- package/core/version.txt +1 -1
- package/dist/commands/backup.js +3 -3
- package/dist/commands/backup.js.map +1 -1
- package/dist/commands/install.d.ts +0 -23
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/install.js +501 -177
- package/dist/commands/install.js.map +1 -1
- package/dist/commands/uninstall.js +3 -3
- package/dist/commands/uninstall.js.map +1 -1
- package/dist/providers.d.ts +66 -0
- package/dist/providers.d.ts.map +1 -0
- package/dist/providers.js +309 -0
- package/dist/providers.js.map +1 -0
- package/dist/validate-key.d.ts +13 -0
- package/dist/validate-key.d.ts.map +1 -0
- package/dist/validate-key.js +53 -0
- package/dist/validate-key.js.map +1 -0
- package/package.json +2 -2
package/core/server.bundled.mjs
CHANGED
|
@@ -71667,7 +71667,8 @@ var KNOWN_BASE_URLS = {
|
|
|
71667
71667
|
xai: "https://api.x.ai/v1",
|
|
71668
71668
|
google: "https://generativelanguage.googleapis.com/v1beta/openai",
|
|
71669
71669
|
deepinfra: "https://api.deepinfra.com/v1/openai",
|
|
71670
|
-
together: "https://api.together.xyz/v1"
|
|
71670
|
+
together: "https://api.together.xyz/v1",
|
|
71671
|
+
anthropic: "https://api.anthropic.com/v1"
|
|
71671
71672
|
};
|
|
71672
71673
|
var ProviderRegistry = class {
|
|
71673
71674
|
providers;
|