agent-swarm-kit 1.0.98 → 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, "`"));
@@ -7657,7 +7657,7 @@ var DocService = /** @class */ (function () {
7657
7657
  result.push("");
7658
7658
  result.push("#### Note for developer");
7659
7659
  result.push("");
7660
- result.push(docNote);
7660
+ result.push("*".concat(docNote, "*"));
7661
7661
  }
7662
7662
  result.push("");
7663
7663
  };
@@ -7683,11 +7683,11 @@ var DocService = /** @class */ (function () {
7683
7683
  }
7684
7684
  if (embedding) {
7685
7685
  result.push("");
7686
- result.push("**Embedding:** `".concat(embedding, "`"));
7686
+ result.push("*Embedding:* `".concat(embedding, "`"));
7687
7687
  }
7688
7688
  {
7689
7689
  result.push("");
7690
- result.push("**Shared:** [".concat(shared ? "x" : " ", "]"));
7690
+ result.push("*Shared:* [".concat(shared ? "x" : " ", "]"));
7691
7691
  }
7692
7692
  if (callbacks) {
7693
7693
  result.push("");
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, "`"));
@@ -7655,7 +7655,7 @@ var DocService = /** @class */ (function () {
7655
7655
  result.push("");
7656
7656
  result.push("#### Note for developer");
7657
7657
  result.push("");
7658
- result.push(docNote);
7658
+ result.push("*".concat(docNote, "*"));
7659
7659
  }
7660
7660
  result.push("");
7661
7661
  };
@@ -7681,11 +7681,11 @@ var DocService = /** @class */ (function () {
7681
7681
  }
7682
7682
  if (embedding) {
7683
7683
  result.push("");
7684
- result.push("**Embedding:** `".concat(embedding, "`"));
7684
+ result.push("*Embedding:* `".concat(embedding, "`"));
7685
7685
  }
7686
7686
  {
7687
7687
  result.push("");
7688
- result.push("**Shared:** [".concat(shared ? "x" : " ", "]"));
7688
+ result.push("*Shared:* [".concat(shared ? "x" : " ", "]"));
7689
7689
  }
7690
7690
  if (callbacks) {
7691
7691
  result.push("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.0.98",
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",