@adminforth/agent 1.8.0 → 1.9.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/agent/simpleAgent.ts +1 -1
- package/build.log +2 -2
- package/custom/ToolsGroup.vue +0 -1
- package/dist/agent/simpleAgent.js +1 -1
- package/dist/custom/ToolsGroup.vue +0 -1
- package/package.json +1 -1
package/agent/simpleAgent.ts
CHANGED
|
@@ -273,7 +273,7 @@ export async function callAgent(params: {
|
|
|
273
273
|
|
|
274
274
|
return await agent.stream({ messages } as any, {
|
|
275
275
|
streamMode: "messages",
|
|
276
|
-
recursionLimit:
|
|
276
|
+
recursionLimit: 100,
|
|
277
277
|
callbacks: [createAgentLlmMetricsLogger()],
|
|
278
278
|
configurable: {
|
|
279
279
|
thread_id: sessionId,
|
package/build.log
CHANGED
|
@@ -29,5 +29,5 @@ custom/skills/fetch_data/SKILL.md
|
|
|
29
29
|
custom/skills/mutate_data/
|
|
30
30
|
custom/skills/mutate_data/SKILL.md
|
|
31
31
|
|
|
32
|
-
sent 174,
|
|
33
|
-
total size is 173,
|
|
32
|
+
sent 174,667 bytes received 413 bytes 350,160.00 bytes/sec
|
|
33
|
+
total size is 173,014 speedup is 0.99
|
package/custom/ToolsGroup.vue
CHANGED
|
@@ -151,7 +151,7 @@ export function callAgent(params) {
|
|
|
151
151
|
});
|
|
152
152
|
return yield agent.stream({ messages }, {
|
|
153
153
|
streamMode: "messages",
|
|
154
|
-
recursionLimit:
|
|
154
|
+
recursionLimit: 100,
|
|
155
155
|
callbacks: [createAgentLlmMetricsLogger()],
|
|
156
156
|
configurable: {
|
|
157
157
|
thread_id: sessionId,
|