llmist 5.1.0 → 6.1.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.js CHANGED
@@ -3,15 +3,26 @@ import {
3
3
  HookPresets,
4
4
  createHints,
5
5
  createMediaOutput,
6
+ filterByDepth,
7
+ filterByParent,
8
+ filterRootEvents,
9
+ groupByParent,
10
+ isGadgetEvent,
11
+ isLLMEvent,
12
+ isRootEvent,
13
+ isSubagentEvent,
6
14
  iterationProgressHint,
7
15
  parallelGadgetHint,
16
+ resolveConfig,
17
+ resolveSubagentModel,
18
+ resolveValue,
8
19
  resultWithAudio,
9
20
  resultWithFile,
10
21
  resultWithImage,
11
22
  resultWithImages,
12
23
  resultWithMedia,
13
24
  z
14
- } from "./chunk-F5QK5YVI.js";
25
+ } from "./chunk-7BJX376V.js";
15
26
  import {
16
27
  AbortException,
17
28
  AbstractGadget,
@@ -23,6 +34,7 @@ import {
23
34
  DEFAULT_HINTS,
24
35
  DEFAULT_PROMPTS,
25
36
  DEFAULT_SUMMARIZATION_PROMPT,
37
+ ExecutionTree,
26
38
  GadgetCallParser,
27
39
  GadgetExecutor,
28
40
  GadgetOutputStore,
@@ -89,7 +101,7 @@ import {
89
101
  toBase64,
90
102
  validateAndApplyDefaults,
91
103
  validateGadgetParams
92
- } from "./chunk-YJKUWFIC.js";
104
+ } from "./chunk-VAJLPRJ6.js";
93
105
  export {
94
106
  AbortException,
95
107
  AbstractGadget,
@@ -101,6 +113,7 @@ export {
101
113
  DEFAULT_HINTS,
102
114
  DEFAULT_PROMPTS,
103
115
  DEFAULT_SUMMARIZATION_PROMPT,
116
+ ExecutionTree,
104
117
  Gadget,
105
118
  GadgetCallParser,
106
119
  GadgetExecutor,
@@ -147,26 +160,37 @@ export {
147
160
  detectImageMimeType,
148
161
  discoverProviderAdapters,
149
162
  extractMessageText,
163
+ filterByDepth,
164
+ filterByParent,
165
+ filterRootEvents,
150
166
  getMockManager,
151
167
  getModelId,
152
168
  getProvider,
169
+ groupByParent,
153
170
  hasProviderPrefix,
154
171
  imageFromBase64,
155
172
  imageFromBuffer,
156
173
  imageFromUrl,
157
174
  isAudioPart,
158
175
  isDataUrl,
176
+ isGadgetEvent,
159
177
  isImagePart,
178
+ isLLMEvent,
179
+ isRootEvent,
180
+ isSubagentEvent,
160
181
  isTextPart,
161
182
  iterationProgressHint,
162
183
  mockLLM,
163
184
  normalizeMessageContent,
164
185
  parallelGadgetHint,
165
186
  parseDataUrl,
187
+ resolveConfig,
166
188
  resolveHintTemplate,
167
189
  resolveModel,
168
190
  resolvePromptTemplate,
169
191
  resolveRulesTemplate,
192
+ resolveSubagentModel,
193
+ resolveValue,
170
194
  resultWithAudio,
171
195
  resultWithFile,
172
196
  resultWithImage,