agent-swarm-kit 1.3.0 → 1.3.1
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/index.cjs +3 -0
- package/build/index.mjs +3 -0
- package/package.json +1 -1
package/build/index.cjs
CHANGED
|
@@ -9249,6 +9249,9 @@ class AgentValidationService {
|
|
|
9249
9249
|
targetAgentName,
|
|
9250
9250
|
depAgentName,
|
|
9251
9251
|
});
|
|
9252
|
+
if (targetAgentName === depAgentName) {
|
|
9253
|
+
return true;
|
|
9254
|
+
}
|
|
9252
9255
|
if (this._agentDepsMap.has(targetAgentName)) {
|
|
9253
9256
|
return this._agentDepsMap.get(targetAgentName).includes(depAgentName);
|
|
9254
9257
|
}
|
package/build/index.mjs
CHANGED
|
@@ -9229,6 +9229,9 @@ class AgentValidationService {
|
|
|
9229
9229
|
targetAgentName,
|
|
9230
9230
|
depAgentName,
|
|
9231
9231
|
});
|
|
9232
|
+
if (targetAgentName === depAgentName) {
|
|
9233
|
+
return true;
|
|
9234
|
+
}
|
|
9232
9235
|
if (this._agentDepsMap.has(targetAgentName)) {
|
|
9233
9236
|
return this._agentDepsMap.get(targetAgentName).includes(depAgentName);
|
|
9234
9237
|
}
|