@agentica/rpc 0.27.3 → 0.28.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/README.md +17 -2
- package/lib/AgenticaRpcListener.d.ts +0 -0
- package/lib/AgenticaRpcListener.js +2 -0
- package/lib/AgenticaRpcListener.js.map +1 -0
- package/lib/MicroAgenticaRpcListener.d.ts +0 -0
- package/lib/MicroAgenticaRpcListener.js +2 -0
- package/lib/MicroAgenticaRpcListener.js.map +1 -0
- package/lib/structures/IAgenticaAssistantMessageEventProgress.d.ts +6 -0
- package/lib/structures/IAgenticaAssistantMessageEventProgress.js +3 -0
- package/lib/structures/IAgenticaAssistantMessageEventProgress.js.map +1 -0
- package/lib/structures/IAgenticaAssistantMessageEventStart.d.ts +0 -0
- package/lib/structures/IAgenticaAssistantMessageEventStart.js +2 -0
- package/lib/structures/IAgenticaAssistantMessageEventStart.js.map +1 -0
- package/lib/structures/IAgenticaDescribeEventProgress.d.ts +6 -0
- package/lib/structures/IAgenticaDescribeEventProgress.js +3 -0
- package/lib/structures/IAgenticaDescribeEventProgress.js.map +1 -0
- package/lib/structures/IAgenticaDescribeEventStart.d.ts +5 -0
- package/lib/structures/IAgenticaDescribeEventStart.js +3 -0
- package/lib/structures/IAgenticaDescribeEventStart.js.map +1 -0
- package/package.json +4 -4
- package/src/AgenticaRpcListener.ts +7 -0
- package/src/MicroAgenticaRpcListener.ts +5 -0
- package/src/structures/IAgenticaAssistantMessageEventProgress.ts +6 -0
- package/src/structures/IAgenticaAssistantMessageEventStart.ts +0 -0
- package/src/structures/IAgenticaDescribeEventProgress.ts +6 -0
- package/src/structures/IAgenticaDescribeEventStart.ts +6 -0
package/README.md
CHANGED
|
@@ -13,8 +13,23 @@
|
|
|
13
13
|
|
|
14
14
|
<!-- Youtube + Discord -->
|
|
15
15
|
<p align="center">
|
|
16
|
-
<a href="https://www.youtube.com/@wrtnlabs"
|
|
17
|
-
|
|
16
|
+
<a href="https://www.youtube.com/@wrtnlabs">
|
|
17
|
+
<img src="https://img.shields.io/badge/YouTube%20Tutorial-0d1117?style=social&logo=youtube" alt="YouTube"/>
|
|
18
|
+
</a>
|
|
19
|
+
|
|
20
|
+
<a href="https://discord.gg/aMhRmzkqCx">
|
|
21
|
+
<img src="https://img.shields.io/badge/Discord-0d1117?style=social&logo=discord" alt="Discord"/>
|
|
22
|
+
</a>
|
|
23
|
+
</p>
|
|
24
|
+
|
|
25
|
+
<p align="center">
|
|
26
|
+
<a href="https://www.bloomberg.com/news/videos/2025-03-31/wtrn-on-series-b-funding-growth-strategy-video">
|
|
27
|
+
<img src="https://wrtnlabs.io/agentica/images/badges/fund-raising-news-202503.svg" />
|
|
28
|
+
</a>
|
|
29
|
+
|
|
30
|
+
<a href="https://github.com/wrtnlabs">
|
|
31
|
+
<img src="https://wrtnlabs.io/agentica/images/badges/open-source-mission.svg" />
|
|
32
|
+
</a>
|
|
18
33
|
</p>
|
|
19
34
|
|
|
20
35
|
Agentic AI framework specialized in AI Function Calling.
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgenticaRpcListener.js","sourceRoot":"","sources":["../src/AgenticaRpcListener.ts"],"names":[],"mappings":""}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MicroAgenticaRpcListener.js","sourceRoot":"","sources":["../src/MicroAgenticaRpcListener.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgenticaAssistantMessageEventProgress.js","sourceRoot":"","sources":["../../src/structures/IAgenticaAssistantMessageEventProgress.ts"],"names":[],"mappings":""}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgenticaAssistantMessageEventStart.js","sourceRoot":"","sources":["../../src/structures/IAgenticaAssistantMessageEventStart.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgenticaDescribeEventProgress.js","sourceRoot":"","sources":["../../src/structures/IAgenticaDescribeEventProgress.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAgenticaDescribeEventStart.js","sourceRoot":"","sources":["../../src/structures/IAgenticaDescribeEventStart.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentica/rpc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "Agentic AI Library specialized in LLM Function Calling",
|
|
5
5
|
"author": "Wrtn Technologies",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"src"
|
|
36
36
|
],
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@agentica/core": "^0.
|
|
38
|
+
"@agentica/core": "^0.28.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@samchon/openapi": "^4.3.
|
|
41
|
+
"@samchon/openapi": "^4.3.3",
|
|
42
42
|
"typia": "^9.3.1",
|
|
43
|
-
"@agentica/core": "^0.
|
|
43
|
+
"@agentica/core": "^0.28.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@rollup/plugin-terser": "^0.4.4",
|
|
File without changes
|