@agentica/rpc 0.36.1 → 0.36.2

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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -61,9 +61,9 @@ const agent = new Agentica({
61
61
  },
62
62
  controllers: [
63
63
  // functions from TypeScript class
64
- typia.llm.controller<MobileFileSystem, "chatgpt">(
64
+ typia.llm.controller<MobileFileSystem>(
65
65
  "filesystem",
66
- MobileFileSystem(),
66
+ new MobileFileSystem(),
67
67
  ),
68
68
  // functions from Swagger/OpenAPI
69
69
  assertHttpController({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentica/rpc",
3
- "version": "0.36.1",
3
+ "version": "0.36.2",
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.36.1"
38
+ "@agentica/core": "^0.36.2"
39
39
  },
40
40
  "dependencies": {
41
41
  "@samchon/openapi": "^6.0.0",
42
42
  "typia": "^11.0.0",
43
- "@agentica/core": "^0.36.1"
43
+ "@agentica/core": "^0.36.2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@rollup/plugin-terser": "^0.4.4",