@adminforth/agent 1.52.2 → 1.52.4
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.log
CHANGED
|
@@ -63,5 +63,5 @@ custom/speech_recognition_frontend/voiceActivityDetection.ts
|
|
|
63
63
|
custom/speech_recognition_frontend/types/
|
|
64
64
|
custom/speech_recognition_frontend/types/voice-activity-detection.d.ts
|
|
65
65
|
|
|
66
|
-
sent 1,682,
|
|
67
|
-
total size is 1,678,
|
|
66
|
+
sent 1,682,974 bytes received 940 bytes 3,367,828.00 bytes/sec
|
|
67
|
+
total size is 1,678,746 speedup is 1.00
|
|
@@ -10,7 +10,7 @@ When you only need specific fields, pass `columns` with the exact resource colum
|
|
|
10
10
|
|
|
11
11
|
# Instructions
|
|
12
12
|
|
|
13
|
-
To find specific data record you should use filters. ILIKE filters are preferred when we are unsure the input is clear.You can combine filters with OR if you want to search multiple fields.If user queries one record you should try to fetch up to 5 records and if more then one returned return output them all to user and ask to select one. When you communicate about record with user, show its several most important fields.
|
|
13
|
+
To find specific data record you should use filters. ILIKE filters are preferred when we are unsure the input is clear. Pass raw search text to LIKE and ILIKE filters; never wrap filter values in SQL wildcards such as `%`. You can combine filters with OR if you want to search multiple fields. If user queries one record you should try to fetch up to 5 records and if more then one returned return output them all to user and ask to select one. When you communicate about record with user, show its several most important fields.
|
|
14
14
|
|
|
15
15
|
Every record summary must be based on one exact row returned by `get_resource_data`.
|
|
16
16
|
|
|
@@ -10,7 +10,7 @@ When you only need specific fields, pass `columns` with the exact resource colum
|
|
|
10
10
|
|
|
11
11
|
# Instructions
|
|
12
12
|
|
|
13
|
-
To find specific data record you should use filters. ILIKE filters are preferred when we are unsure the input is clear.You can combine filters with OR if you want to search multiple fields.If user queries one record you should try to fetch up to 5 records and if more then one returned return output them all to user and ask to select one. When you communicate about record with user, show its several most important fields.
|
|
13
|
+
To find specific data record you should use filters. ILIKE filters are preferred when we are unsure the input is clear. Pass raw search text to LIKE and ILIKE filters; never wrap filter values in SQL wildcards such as `%`. You can combine filters with OR if you want to search multiple fields. If user queries one record you should try to fetch up to 5 records and if more then one returned return output them all to user and ask to select one. When you communicate about record with user, show its several most important fields.
|
|
14
14
|
|
|
15
15
|
Every record summary must be based on one exact row returned by `get_resource_data`.
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminforth/agent",
|
|
3
|
-
"version": "1.52.
|
|
3
|
+
"version": "1.52.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"description": "AI agent plugin for AdminForth with tool-based workflows and persistent chat sessions",
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "latest",
|
|
28
|
+
"adminforth": "3.0.1",
|
|
28
29
|
"semantic-release": "^24.2.1",
|
|
29
30
|
"semantic-release-slack-bot": "^4.0.2",
|
|
30
31
|
"typescript": "^5.7.3"
|
|
@@ -33,7 +34,6 @@
|
|
|
33
34
|
"@langchain/core": "^1.1.40",
|
|
34
35
|
"@langchain/langgraph": "^1.2.8",
|
|
35
36
|
"@langchain/langgraph-checkpoint": "^1.0.1",
|
|
36
|
-
"adminforth": "2.72.0",
|
|
37
37
|
"dayjs": "^1.11.20",
|
|
38
38
|
"langchain": "^1.3.3",
|
|
39
39
|
"multer": "^2.1.1",
|
|
@@ -65,5 +65,8 @@
|
|
|
65
65
|
"name": "next",
|
|
66
66
|
"prerelease": true
|
|
67
67
|
}
|
|
68
|
-
]
|
|
68
|
+
],
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"adminforth": "3.0.1"
|
|
71
|
+
}
|
|
69
72
|
}
|