@reverbia/sdk 1.0.0-next.20251114165311 → 1.0.0-next.20251117144849
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/client/index.cjs +7 -1
- package/dist/client/index.mjs +7 -1
- package/package.json +1 -1
package/dist/client/index.cjs
CHANGED
|
@@ -831,8 +831,14 @@ var createClient = (config = {}) => {
|
|
|
831
831
|
};
|
|
832
832
|
};
|
|
833
833
|
|
|
834
|
+
// src/clientConfig.ts
|
|
835
|
+
var createClientConfig = (config) => ({
|
|
836
|
+
...config,
|
|
837
|
+
baseUrl: "https://ai-portal-dev.zetachain.com"
|
|
838
|
+
});
|
|
839
|
+
|
|
834
840
|
// src/client/client.gen.ts
|
|
835
|
-
var client = createClient(createConfig());
|
|
841
|
+
var client = createClient(createClientConfig(createConfig()));
|
|
836
842
|
|
|
837
843
|
// src/client/sdk.gen.ts
|
|
838
844
|
var postApiV1ChatCompletions = (options) => {
|
package/dist/client/index.mjs
CHANGED
|
@@ -803,8 +803,14 @@ var createClient = (config = {}) => {
|
|
|
803
803
|
};
|
|
804
804
|
};
|
|
805
805
|
|
|
806
|
+
// src/clientConfig.ts
|
|
807
|
+
var createClientConfig = (config) => ({
|
|
808
|
+
...config,
|
|
809
|
+
baseUrl: "https://ai-portal-dev.zetachain.com"
|
|
810
|
+
});
|
|
811
|
+
|
|
806
812
|
// src/client/client.gen.ts
|
|
807
|
-
var client = createClient(createConfig());
|
|
813
|
+
var client = createClient(createClientConfig(createConfig()));
|
|
808
814
|
|
|
809
815
|
// src/client/sdk.gen.ts
|
|
810
816
|
var postApiV1ChatCompletions = (options) => {
|