bereach-openclaw 1.5.0-beta.1 → 1.5.0-beta.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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/src/hooks/utils.ts +2 -2
- package/src/tools/index.ts +1 -1
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/src/hooks/utils.ts
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
// API constants (replaced at build time by build-plugins.js)
|
|
10
10
|
// ---------------------------------------------------------------------------
|
|
11
11
|
|
|
12
|
-
export const API_BASE = "https://api
|
|
13
|
-
export const CHAT_BASE = "https://chat
|
|
12
|
+
export const API_BASE = "https://api.bereach.ai";
|
|
13
|
+
export const CHAT_BASE = "https://chat.bereach.ai";
|
|
14
14
|
export const PRICING_URL = "https://bereach.ai/pricing";
|
|
15
15
|
|
|
16
16
|
// ---------------------------------------------------------------------------
|
package/src/tools/index.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { definitions, type ToolDefinition } from "./definitions";
|
|
|
2
2
|
import { cacheSet } from "../hooks/cache";
|
|
3
3
|
import { resolveApiKey } from "../index";
|
|
4
4
|
|
|
5
|
-
const API_BASE = "https://api
|
|
5
|
+
const API_BASE = "https://api.bereach.ai";
|
|
6
6
|
|
|
7
7
|
const MAX_RETRIES = 2;
|
|
8
8
|
|