@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.
Files changed (26) hide show
  1. package/README.md +17 -2
  2. package/lib/AgenticaRpcListener.d.ts +0 -0
  3. package/lib/AgenticaRpcListener.js +2 -0
  4. package/lib/AgenticaRpcListener.js.map +1 -0
  5. package/lib/MicroAgenticaRpcListener.d.ts +0 -0
  6. package/lib/MicroAgenticaRpcListener.js +2 -0
  7. package/lib/MicroAgenticaRpcListener.js.map +1 -0
  8. package/lib/structures/IAgenticaAssistantMessageEventProgress.d.ts +6 -0
  9. package/lib/structures/IAgenticaAssistantMessageEventProgress.js +3 -0
  10. package/lib/structures/IAgenticaAssistantMessageEventProgress.js.map +1 -0
  11. package/lib/structures/IAgenticaAssistantMessageEventStart.d.ts +0 -0
  12. package/lib/structures/IAgenticaAssistantMessageEventStart.js +2 -0
  13. package/lib/structures/IAgenticaAssistantMessageEventStart.js.map +1 -0
  14. package/lib/structures/IAgenticaDescribeEventProgress.d.ts +6 -0
  15. package/lib/structures/IAgenticaDescribeEventProgress.js +3 -0
  16. package/lib/structures/IAgenticaDescribeEventProgress.js.map +1 -0
  17. package/lib/structures/IAgenticaDescribeEventStart.d.ts +5 -0
  18. package/lib/structures/IAgenticaDescribeEventStart.js +3 -0
  19. package/lib/structures/IAgenticaDescribeEventStart.js.map +1 -0
  20. package/package.json +4 -4
  21. package/src/AgenticaRpcListener.ts +7 -0
  22. package/src/MicroAgenticaRpcListener.ts +5 -0
  23. package/src/structures/IAgenticaAssistantMessageEventProgress.ts +6 -0
  24. package/src/structures/IAgenticaAssistantMessageEventStart.ts +0 -0
  25. package/src/structures/IAgenticaDescribeEventProgress.ts +6 -0
  26. 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"><img src="https://img.shields.io/badge/YouTube%20Tutorial-0d1117?style=social&logo=youtube" alt="YouTube"/></a>&nbsp;
17
- <a href="https://discord.gg/aMhRmzkqCx"><img src="https://img.shields.io/badge/Discord-0d1117?style=social&logo=discord" alt="Discord"/></a>
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
+ &nbsp;
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
+ &nbsp;&nbsp;
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,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=AgenticaRpcListener.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AgenticaRpcListener.js","sourceRoot":"","sources":["../src/AgenticaRpcListener.ts"],"names":[],"mappings":""}
File without changes
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=MicroAgenticaRpcListener.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MicroAgenticaRpcListener.js","sourceRoot":"","sources":["../src/MicroAgenticaRpcListener.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface IAgenticaAssistantMessageEventProgress {
2
+ type: "assistantMessagePiece";
3
+ sequence: number;
4
+ text: string;
5
+ done: boolean;
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IAgenticaAssistantMessageEventProgress.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgenticaAssistantMessageEventProgress.js","sourceRoot":"","sources":["../../src/structures/IAgenticaAssistantMessageEventProgress.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=IAgenticaAssistantMessageEventStart.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgenticaAssistantMessageEventStart.js","sourceRoot":"","sources":["../../src/structures/IAgenticaAssistantMessageEventStart.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ export interface IAgenticaDescribeEventProgress {
2
+ type: "describeMessageProgress";
3
+ sequence: number;
4
+ text: string;
5
+ done: boolean;
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IAgenticaDescribeEventProgress.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgenticaDescribeEventProgress.js","sourceRoot":"","sources":["../../src/structures/IAgenticaDescribeEventProgress.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import type { IAgenticaHistoryJson } from "@agentica/core";
2
+ export interface IAgenticaDescribeEventStart {
3
+ type: "describeMessageStart";
4
+ executes: IAgenticaHistoryJson.IExecute[];
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IAgenticaDescribeEventStart.js.map
@@ -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.27.3",
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.27.3"
38
+ "@agentica/core": "^0.28.0"
39
39
  },
40
40
  "dependencies": {
41
- "@samchon/openapi": "^4.3.1",
41
+ "@samchon/openapi": "^4.3.3",
42
42
  "typia": "^9.3.1",
43
- "@agentica/core": "^0.27.3"
43
+ "@agentica/core": "^0.28.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@rollup/plugin-terser": "^0.4.4",
@@ -0,0 +1,7 @@
1
+ // export class AgenticaRpcListener {
2
+ // public constructor() {}
3
+
4
+ // public on() {}
5
+
6
+ // public off() {}
7
+ // }
@@ -0,0 +1,5 @@
1
+ // import type { IMicroAgenticaRpcListener } from "./IMicroAgenticaRpcListener";
2
+
3
+ // export class McpAgenticaRpcListener {
4
+ // public constructor(private readonly driver: IMicroAgenticaRpcListener) {}
5
+ // }
@@ -0,0 +1,6 @@
1
+ export interface IAgenticaAssistantMessageEventProgress {
2
+ type: "assistantMessagePiece";
3
+ sequence: number;
4
+ text: string;
5
+ done: boolean;
6
+ }
@@ -0,0 +1,6 @@
1
+ export interface IAgenticaDescribeEventProgress {
2
+ type: "describeMessageProgress";
3
+ sequence: number;
4
+ text: string;
5
+ done: boolean;
6
+ }
@@ -0,0 +1,6 @@
1
+ import type { IAgenticaHistoryJson } from "@agentica/core";
2
+
3
+ export interface IAgenticaDescribeEventStart {
4
+ type: "describeMessageStart";
5
+ executes: IAgenticaHistoryJson.IExecute[];
6
+ }