agent-swarm-kit 1.0.112 → 1.0.113
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 +1 -7
- package/build/index.mjs +1 -7
- package/package.json +1 -1
- package/types.d.ts +1 -1
package/build/index.cjs
CHANGED
|
@@ -1688,8 +1688,8 @@ var ClientAgent = /** @class */ (function () {
|
|
|
1688
1688
|
var _this = this;
|
|
1689
1689
|
this.params = params;
|
|
1690
1690
|
this._agentChangeSubject = new functoolsKit.Subject();
|
|
1691
|
-
this._toolStopSubject = new functoolsKit.Subject();
|
|
1692
1691
|
this._toolErrorSubject = new functoolsKit.Subject();
|
|
1692
|
+
this._toolStopSubject = new functoolsKit.Subject();
|
|
1693
1693
|
this._toolCommitSubject = new functoolsKit.Subject();
|
|
1694
1694
|
this._outputSubject = new functoolsKit.Subject();
|
|
1695
1695
|
/**
|
|
@@ -9222,12 +9222,6 @@ var SharedStoragePublicService = /** @class */ (function () {
|
|
|
9222
9222
|
provide(TYPES.swarmMetaService, function () { return new SwarmMetaService(); });
|
|
9223
9223
|
provide(TYPES.agentMetaService, function () { return new AgentMetaService(); });
|
|
9224
9224
|
}
|
|
9225
|
-
{
|
|
9226
|
-
provide(TYPES.agentPublicService, function () { return new AgentPublicService(); });
|
|
9227
|
-
provide(TYPES.historyPublicService, function () { return new HistoryPublicService(); });
|
|
9228
|
-
provide(TYPES.sessionPublicService, function () { return new SessionPublicService(); });
|
|
9229
|
-
provide(TYPES.swarmPublicService, function () { return new SwarmPublicService(); });
|
|
9230
|
-
}
|
|
9231
9225
|
{
|
|
9232
9226
|
provide(TYPES.agentValidationService, function () { return new AgentValidationService(); });
|
|
9233
9227
|
provide(TYPES.completionValidationService, function () { return new CompletionValidationService(); });
|
package/build/index.mjs
CHANGED
|
@@ -1686,8 +1686,8 @@ var ClientAgent = /** @class */ (function () {
|
|
|
1686
1686
|
var _this = this;
|
|
1687
1687
|
this.params = params;
|
|
1688
1688
|
this._agentChangeSubject = new Subject();
|
|
1689
|
-
this._toolStopSubject = new Subject();
|
|
1690
1689
|
this._toolErrorSubject = new Subject();
|
|
1690
|
+
this._toolStopSubject = new Subject();
|
|
1691
1691
|
this._toolCommitSubject = new Subject();
|
|
1692
1692
|
this._outputSubject = new Subject();
|
|
1693
1693
|
/**
|
|
@@ -9220,12 +9220,6 @@ var SharedStoragePublicService = /** @class */ (function () {
|
|
|
9220
9220
|
provide(TYPES.swarmMetaService, function () { return new SwarmMetaService(); });
|
|
9221
9221
|
provide(TYPES.agentMetaService, function () { return new AgentMetaService(); });
|
|
9222
9222
|
}
|
|
9223
|
-
{
|
|
9224
|
-
provide(TYPES.agentPublicService, function () { return new AgentPublicService(); });
|
|
9225
|
-
provide(TYPES.historyPublicService, function () { return new HistoryPublicService(); });
|
|
9226
|
-
provide(TYPES.sessionPublicService, function () { return new SessionPublicService(); });
|
|
9227
|
-
provide(TYPES.swarmPublicService, function () { return new SwarmPublicService(); });
|
|
9228
|
-
}
|
|
9229
9223
|
{
|
|
9230
9224
|
provide(TYPES.agentValidationService, function () { return new AgentValidationService(); });
|
|
9231
9225
|
provide(TYPES.completionValidationService, function () { return new CompletionValidationService(); });
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1584,8 +1584,8 @@ declare const TOOL_STOP_SYMBOL: unique symbol;
|
|
|
1584
1584
|
declare class ClientAgent implements IAgent {
|
|
1585
1585
|
readonly params: IAgentParams;
|
|
1586
1586
|
readonly _agentChangeSubject: Subject<typeof AGENT_CHANGE_SYMBOL>;
|
|
1587
|
-
readonly _toolStopSubject: Subject<typeof TOOL_STOP_SYMBOL>;
|
|
1588
1587
|
readonly _toolErrorSubject: Subject<typeof TOOL_ERROR_SYMBOL>;
|
|
1588
|
+
readonly _toolStopSubject: Subject<typeof TOOL_STOP_SYMBOL>;
|
|
1589
1589
|
readonly _toolCommitSubject: Subject<void>;
|
|
1590
1590
|
readonly _outputSubject: Subject<string>;
|
|
1591
1591
|
/**
|