@latentforce/shift 1.0.7 → 1.0.8
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/build/utils/config.js +3 -3
- package/package.json +1 -1
package/build/utils/config.js
CHANGED
|
@@ -10,9 +10,9 @@ const LOCAL_CONFIG_FILE = 'config.json'; // Changed from project.json to match e
|
|
|
10
10
|
const DAEMON_PID_FILE = 'daemon.pid';
|
|
11
11
|
const DAEMON_STATUS_FILE = 'daemon.status.json';
|
|
12
12
|
// Default URLs
|
|
13
|
-
const DEFAULT_API_URL = '
|
|
14
|
-
const DEFAULT_ORCH_URL = '
|
|
15
|
-
const DEFAULT_WS_URL = '
|
|
13
|
+
const DEFAULT_API_URL = 'https://dev-shift-lite.latentforce.ai';
|
|
14
|
+
const DEFAULT_ORCH_URL = 'https://agent-orch.latentforce.ai';
|
|
15
|
+
const DEFAULT_WS_URL = 'wss://agent-orch.latentforce.ai';
|
|
16
16
|
// Helper to get URL from: 1) env var, 2) global config, 3) default
|
|
17
17
|
function getConfiguredUrl(envVar, configKey, defaultUrl) {
|
|
18
18
|
// Priority: Environment variable > Global config > Default
|