agent-swarm-kit 1.0.99 → 1.0.101

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 CHANGED
@@ -7494,7 +7494,7 @@ var DocService = /** @class */ (function () {
7494
7494
  docDescription = this.agentSchemaService.get(swarmSchema.defaultAgent).docDescription;
7495
7495
  if (docDescription) {
7496
7496
  result.push("");
7497
- result.push(docDescription);
7497
+ result.push("\t".concat(docDescription));
7498
7498
  }
7499
7499
  result.push("");
7500
7500
  }
@@ -7509,7 +7509,7 @@ var DocService = /** @class */ (function () {
7509
7509
  docDescription = this.agentSchemaService.get(swarmSchema.agentList[i]).docDescription;
7510
7510
  if (docDescription) {
7511
7511
  result.push("");
7512
- result.push(docDescription);
7512
+ result.push("\t".concat(docDescription));
7513
7513
  }
7514
7514
  result.push("");
7515
7515
  }
@@ -7625,7 +7625,7 @@ var DocService = /** @class */ (function () {
7625
7625
  Object.entries(fn.parameters.properties).forEach(function (_a, idx) {
7626
7626
  var _b = __read(_a, 2), key = _b[0], _c = _b[1], type = _c.type, description = _c.description, e = _c.enum;
7627
7627
  result.push("");
7628
- result.push("> ".concat(idx + 1, ". ").concat(key));
7628
+ result.push("> **".concat(idx + 1, ". ").concat(key, "**"));
7629
7629
  {
7630
7630
  result.push("");
7631
7631
  result.push("*Type:* `".concat(type, "`"));
package/build/index.mjs CHANGED
@@ -7492,7 +7492,7 @@ var DocService = /** @class */ (function () {
7492
7492
  docDescription = this.agentSchemaService.get(swarmSchema.defaultAgent).docDescription;
7493
7493
  if (docDescription) {
7494
7494
  result.push("");
7495
- result.push(docDescription);
7495
+ result.push("\t".concat(docDescription));
7496
7496
  }
7497
7497
  result.push("");
7498
7498
  }
@@ -7507,7 +7507,7 @@ var DocService = /** @class */ (function () {
7507
7507
  docDescription = this.agentSchemaService.get(swarmSchema.agentList[i]).docDescription;
7508
7508
  if (docDescription) {
7509
7509
  result.push("");
7510
- result.push(docDescription);
7510
+ result.push("\t".concat(docDescription));
7511
7511
  }
7512
7512
  result.push("");
7513
7513
  }
@@ -7623,7 +7623,7 @@ var DocService = /** @class */ (function () {
7623
7623
  Object.entries(fn.parameters.properties).forEach(function (_a, idx) {
7624
7624
  var _b = __read(_a, 2), key = _b[0], _c = _b[1], type = _c.type, description = _c.description, e = _c.enum;
7625
7625
  result.push("");
7626
- result.push("> ".concat(idx + 1, ". ").concat(key));
7626
+ result.push("> **".concat(idx + 1, ". ").concat(key, "**"));
7627
7627
  {
7628
7628
  result.push("");
7629
7629
  result.push("*Type:* `".concat(type, "`"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.0.99",
3
+ "version": "1.0.101",
4
4
  "description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",