llmist 9.7.0 → 10.0.0
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/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5791,6 +5791,9 @@ declare class AgentBuilder {
|
|
|
5791
5791
|
* **Signal Forwarding** - When parent context includes a signal, it's automatically
|
|
5792
5792
|
* forwarded to the subagent for proper cancellation propagation.
|
|
5793
5793
|
*
|
|
5794
|
+
* **Logger Inheritance** - When parent context includes a logger, it's inherited
|
|
5795
|
+
* by the subagent for consistent structured logging.
|
|
5796
|
+
*
|
|
5794
5797
|
* @param ctx - ExecutionContext passed to the gadget's execute() method
|
|
5795
5798
|
* @param depth - Nesting depth (default: 1 for direct child)
|
|
5796
5799
|
* @returns This builder for chaining
|
package/dist/index.d.ts
CHANGED
|
@@ -5791,6 +5791,9 @@ declare class AgentBuilder {
|
|
|
5791
5791
|
* **Signal Forwarding** - When parent context includes a signal, it's automatically
|
|
5792
5792
|
* forwarded to the subagent for proper cancellation propagation.
|
|
5793
5793
|
*
|
|
5794
|
+
* **Logger Inheritance** - When parent context includes a logger, it's inherited
|
|
5795
|
+
* by the subagent for consistent structured logging.
|
|
5796
|
+
*
|
|
5794
5797
|
* @param ctx - ExecutionContext passed to the gadget's execute() method
|
|
5795
5798
|
* @param depth - Nesting depth (default: 1 for direct child)
|
|
5796
5799
|
* @returns This builder for chaining
|
package/dist/index.js
CHANGED
|
@@ -10636,6 +10636,9 @@ var init_builder = __esm({
|
|
|
10636
10636
|
* **Signal Forwarding** - When parent context includes a signal, it's automatically
|
|
10637
10637
|
* forwarded to the subagent for proper cancellation propagation.
|
|
10638
10638
|
*
|
|
10639
|
+
* **Logger Inheritance** - When parent context includes a logger, it's inherited
|
|
10640
|
+
* by the subagent for consistent structured logging.
|
|
10641
|
+
*
|
|
10639
10642
|
* @param ctx - ExecutionContext passed to the gadget's execute() method
|
|
10640
10643
|
* @param depth - Nesting depth (default: 1 for direct child)
|
|
10641
10644
|
* @returns This builder for chaining
|
|
@@ -10675,6 +10678,9 @@ var init_builder = __esm({
|
|
|
10675
10678
|
if (ctx.signal && !this.signal) {
|
|
10676
10679
|
this.signal = ctx.signal;
|
|
10677
10680
|
}
|
|
10681
|
+
if (ctx.logger && !this.logger) {
|
|
10682
|
+
this.logger = ctx.logger;
|
|
10683
|
+
}
|
|
10678
10684
|
return this;
|
|
10679
10685
|
}
|
|
10680
10686
|
/**
|