@builder.io/ai-utils 0.0.47 → 0.0.48

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/dist/settings.js +1 -3
  2. package/package.json +1 -1
package/dist/settings.js CHANGED
@@ -15,9 +15,7 @@ const urlParamSettings = [
15
15
  "viewId",
16
16
  ];
17
17
  export function getAssistantUrl(opts = {}) {
18
- const url = new URL(opts.local
19
- ? "http://localhost:7242"
20
- : "https://ai-assistant-tk43uighdq-uc.a.run.app");
18
+ const url = new URL(opts.local ? "http://localhost:7242" : "https://assistant.builder.io");
21
19
  urlParamSettings.forEach((key) => {
22
20
  const value = opts[key];
23
21
  if (typeof value === "string" || typeof value === "boolean") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",