@lightcone-ai/daemon 0.15.4 → 0.15.5
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/package.json +1 -1
- package/src/agent-manager.js +1 -1
package/package.json
CHANGED
package/src/agent-manager.js
CHANGED
|
@@ -392,7 +392,7 @@ export class AgentManager {
|
|
|
392
392
|
if (!text || !message) return false;
|
|
393
393
|
const target = this._formatDeliveryTarget(message);
|
|
394
394
|
if (!target || target.includes('unknown')) return false;
|
|
395
|
-
const url = `${this.serverUrl}/internal/${encodeURIComponent(agentId)}/send`;
|
|
395
|
+
const url = `${this.serverUrl}/internal/agent/${encodeURIComponent(agentId)}/send`;
|
|
396
396
|
try {
|
|
397
397
|
const res = await fetch(url, {
|
|
398
398
|
method: 'POST',
|