@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.
@@ -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: 50,
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,726 bytes received 413 bytes 350,278.00 bytes/sec
33
- total size is 173,048 speedup is 0.99
32
+ sent 174,667 bytes received 413 bytes 350,160.00 bytes/sec
33
+ total size is 173,014 speedup is 0.99
@@ -21,7 +21,6 @@
21
21
  </template>
22
22
 
23
23
  <script setup lang="ts">
24
- import { Tool } from 'langchain';
25
24
  import ToolRenderer from './ToolRenderer.vue';
26
25
  import type { IPart } from './types';
27
26
  import { ref } from 'vue';
@@ -151,7 +151,7 @@ export function callAgent(params) {
151
151
  });
152
152
  return yield agent.stream({ messages }, {
153
153
  streamMode: "messages",
154
- recursionLimit: 50,
154
+ recursionLimit: 100,
155
155
  callbacks: [createAgentLlmMetricsLogger()],
156
156
  configurable: {
157
157
  thread_id: sessionId,
@@ -21,7 +21,6 @@
21
21
  </template>
22
22
 
23
23
  <script setup lang="ts">
24
- import { Tool } from 'langchain';
25
24
  import ToolRenderer from './ToolRenderer.vue';
26
25
  import type { IPart } from './types';
27
26
  import { ref } from 'vue';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/agent",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",