agentica 0.44.0-dev.20260313 → 0.44.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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Wrtn Technologies
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Wrtn Technologies
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,218 +1,218 @@
1
- # Agentica, AI Function Calling Framework
2
-
3
- ![Agentica - ReadMe Diagram](https://github.com/user-attachments/assets/ecd06d51-b818-41c8-ab31-f0e40f48034e)
4
-
5
- <!-- Github/NPM Badges -->
6
- <p align="center">
7
- <a href="https://github.com/wrtnlabs/agentica/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT License"/></a>
8
- <a href="https://www.npmjs.com/package/@agentica/core"><img src="https://img.shields.io/npm/v/@agentica/core.svg" alt="NPM Version"/></a>
9
- <a href="https://www.npmjs.com/package/@agentica/core"><img src="https://img.shields.io/npm/dm/@agentica/core.svg" alt="NPM Downloads"/></a>
10
- <a href="https://dormoshe.io/newsletters/373"><img src="https://img.shields.io/badge/DorMoshe%20Newsletter-Top%20%236%20of%201K-orange?style=flat&logo=rss" alt="Newsletter Top #6"/></a>
11
- <a href="https://github.com/wrtnlabs/agentica/actions?query=workflow%3Abuild"><img src="https://github.com/wrtnlabs/agentica/workflows/build/badge.svg" alt="Build Status"/></a>
12
- </p>
13
-
14
- <!-- Youtube + Discord -->
15
- <p align="center">
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>
33
- </p>
34
-
35
- Agentic AI framework specialized in AI Function Calling.
36
-
37
- Don't be afraid of AI agent development. Just list functions from three protocols below. This is everything you should do for AI agent development.
38
-
39
- - TypeScript Class
40
- - Swagger/OpenAPI Document
41
- - MCP (Model Context Protocol) Server
42
-
43
- Wanna make an e-commerce agent? Bring in e-commerce functions. Need a newspaper agent? Get API functions from the newspaper company. Just prepare any functions that you need, then it becomes an AI agent.
44
-
45
- Are you a TypeScript developer? Then you're already an AI developer. Familiar with backend development? You're already well-versed in AI development. Anyone who can make functions can make AI agents.
46
-
47
- <!-- eslint-skip -->
48
-
49
- ```typescript
50
-
51
- import { Agentica, assertHttpController } from "@agentica/core";
52
- import OpenAI from "openai";
53
- import typia from "typia";
54
-
55
- import { MobileFileSystem } from "./services/MobileFileSystem";
56
-
57
- const agent = new Agentica({
58
- vendor: {
59
- api: new OpenAI({ apiKey: "********" }),
60
- model: "gpt-4o-mini",
61
- },
62
- controllers: [
63
- // functions from TypeScript class
64
- typia.llm.controller<MobileFileSystem>(
65
- "filesystem",
66
- new MobileFileSystem(),
67
- ),
68
- // functions from Swagger/OpenAPI
69
- assertHttpController({
70
- name: "shopping",
71
- model: "chatgpt",
72
- document: await fetch(
73
- "https://shopping-be.wrtn.ai/editor/swagger.json",
74
- ).then(r => r.json()),
75
- connection: {
76
- host: "https://shopping-be.wrtn.ai",
77
- headers: { Authorization: "Bearer ********" },
78
- },
79
- }),
80
- ],
81
- });
82
- await agent.conversate("I wanna buy MacBook Pro");
83
-
84
- ```
85
-
86
- ## 📦 Setup
87
-
88
- ```bash
89
- $ npx agentica start <directory>
90
-
91
- ----------------------------------------
92
- Agentica Setup Wizard
93
- ----------------------------------------
94
- ? Package Manager (use arrow keys)
95
- > npm
96
- pnpm
97
- yarn (berry is not supported)
98
- ? Project Type
99
- NodeJS Agent Server
100
- > NestJS Agent Server
101
- React Client Application
102
- Standalone Application
103
- ? Embedded Controllers (multi-selectable)
104
- (none)
105
- Google Calendar
106
- Google News
107
- > Github
108
- Reddit
109
- Slack
110
- ...
111
- ```
112
-
113
- The setup wizard helps you create a new project tailored to your needs.
114
-
115
- For reference, when selecting a project type, any option other than "Standalone Application" will implement the [WebSocket Protocol](https://wrtnlabs.io/agentica/docs/websocket/) for client-server communication.
116
-
117
- For comprehensive setup instructions, visit our [Getting Started](https://wrtnlabs.io/agentica/docs/) guide.
118
-
119
- ## 💻 Playground
120
-
121
- Experience Agentica firsthand through our [interactive playground](https://wrtnlabs.io/agentica/playground) before installing.
122
-
123
- Our demonstrations showcase the power and simplicity of Agentica's function calling capabilities across different integration methods.
124
-
125
- - [TypeScript Class](https://wrtnlabs.io/agentica/playground/bbs)
126
- - [Swagger/OpenAPI Document](https://wrtnlabs.io/agentica/playground/uploader)
127
- - [Enterprise E-commerce Agent](https://wrtnlabs.io/agentica/playground/shopping)
128
-
129
- ![E-commerce Agent Demo](https://github.com/user-attachments/assets/fbfa9f93-304c-4728-933e-deb8ecd7a2af)
130
-
131
- <!--
132
- @todo this section would be changed after making tutorial playground
133
- -->
134
-
135
- ## 📚 Documentation Resources
136
-
137
- Find comprehensive resources at our [official website](https://wrtnlabs.io/agentica).
138
-
139
- - [Home](https://wrtnlabs.io/agentica)
140
- - [Guide Documents](https://wrtnlabs.io/agentica/docs)
141
- - [Setup](https://wrtnlabs.io/agentica/docs/setup/cli/)
142
- - [Concepts](https://wrtnlabs.io/agentica/docs/concepts/function-calling/)
143
- - [Core Library](https://wrtnlabs.io/agentica/docs/core/)
144
- - [WebSocket Protocol](https://wrtnlabs.io/agentica/docs/websocket/)
145
- - [Plugin Modules](https://wrtnlabs.io/agentica/docs/plugins/benchmark/)
146
- - [Tutorial](https://wrtnlabs.io/agentica/tutorial)
147
- - [Productivity](https://wrtnlabs.io/agentica/tutorial/productivity/arxiv/)
148
- - [Coding](https://wrtnlabs.io/agentica/tutorial/coding/file-system/)
149
- - [React Native](https://wrtnlabs.io/agentica/tutorial/react-native/sms/)
150
- - [Enterprise](https://wrtnlabs.io/agentica/tutorial/enterprise/shopping/)
151
- - [API Documents](https://wrtnlabs.io/agentica/api)
152
- - [Youtube](https://www.youtube.com/@wrtnlabs)
153
- - [Paper](https://wrtnlabs.io/agentica/paper)
154
-
155
- https://github.com/user-attachments/assets/2f2a4cdc-6cf1-4304-b82d-04a8ed0be0dd
156
-
157
- > Tutorial Videos: https://www.youtube.com/@wrtnlabs
158
-
159
- ## 🌟 Why Agentica?
160
-
161
- ```mermaid
162
- flowchart
163
- subgraph "JSON Schema Specification"
164
- schemav4("JSON Schema v4 ~ v7") --upgrades--> emended[["OpenAPI v3.1 (emended)"]]
165
- schema2910("JSON Schema 2019-03") --upgrades--> emended
166
- schema2020("JSON Schema 2020-12") --emends--> emended
167
- end
168
- subgraph "Agentica"
169
- emended --"Artificial Intelligence"--> fc{{"AI Function Calling"}}
170
- fc --"OpenAI"--> chatgpt("ChatGPT")
171
- fc --"Google"--> gemini("Gemini")
172
- fc --"Anthropic"--> claude("Claude")
173
- fc --"High-Flyer"--> deepseek("DeepSeek")
174
- fc --"Meta"--> llama("Llama")
175
- chatgpt --"3.1"--> custom(["Custom JSON Schema"])
176
- gemini --"3.0"--> custom(["Custom JSON Schema"])
177
- claude --"3.1"--> standard(["Standard JSON Schema"])
178
- deepseek --"3.1"--> standard
179
- llama --"3.1"--> standard
180
- end
181
- ```
182
-
183
- Agentica enhances AI function calling by the following strategies:
184
-
185
- - [**Compiler Driven Development**](https://wrtnlabs.io/agentica/docs/concepts/compiler-driven-development): constructs function calling schema automatically by compiler skills without hand-writing.
186
- - [**JSON Schema Conversion**](https://wrtnlabs.io/agentica/docs/core/vendor/#schema-specification): automatically handles specification differences between LLM vendors, ensuring seamless integration regardless of your chosen AI model.
187
- - [**Validation Feedback**](https://wrtnlabs.io/agentica/docs/concepts/function-calling#validation-feedback): detects and corrects AI mistakes in argument composition, dramatically reducing errors and improving reliability.
188
- - [**Selector Agent**](https://wrtnlabs.io/agentica/docs/concepts/function-calling#orchestration-strategy): filtering candidate functions to minimize context usage, optimize performance, and reduce token consumption.
189
-
190
- Thanks to these innovations, Agentica makes AI function calling easier, safer, and more accurate than before. Development becomes more intuitive since you only need to prepare functions relevant to your specific use case, and scaling your agent's capabilities is as simple as adding or removing functions.
191
-
192
- In 2023, when OpenAI announced function calling, many predicted that function calling-driven AI development would become the mainstream. However, in reality, due to the difficulty and instability of function calling, the trend in AI development became agent workflow. Agent workflow, which is inflexible and must be created for specific purposes, has conquered the AI agent ecosystem.
193
-
194
- By the way, as Agentica has resolved the difficulty and instability problems of function calling, the time has come to embrace function-driven AI development once again.
195
-
196
- | Type | Workflow | Vanilla Function Calling | Agentica Function Calling |
197
- | ----------- | ------------- | ------------------------ | ------------------------- |
198
- | Purpose | ❌ Specific | 🟢 General | 🟢 General |
199
- | Difficulty | ❌ Difficult | ❌ Difficult | 🟢 Easy |
200
- | Stability | 🟢 Stable | ❌ Unstable | 🟢 Stable |
201
- | Flexibility | ❌ Inflexible | 🟢 Flexible | 🟢 Flexible |
202
-
203
- ## 💬 Community & Support
204
-
205
- For support, questions, or to provide feedback, join our Discord community:
206
-
207
- [![Discord](https://dcbadge.limes.pink/api/server/https://discord.gg/aMhRmzkqCx)](https://discord.gg/aMhRmzkqCx)
208
-
209
- ## ⚖️ License
210
-
211
- Agentica is open-source and available under the [MIT License](https://github.com/wrtnlabs/agentica/blob/master/LICENSE).
212
-
213
- <p align="center">
214
- <img src="https://github.com/user-attachments/assets/ecd0b82e-bfb7-4eb5-ae97-75be0cb22f10" alt="Wrtn Labs Logo" />
215
- </p>
216
- <div align="center">
217
- Agentica is maintained by <a href="https://wrtnlabs.io">Wrtn Technologies</a> &mdash; Empowering developers to transform TypeScript functions and OpenAPI specs into powerful AI agents.
218
- </div>
1
+ # Agentica, AI Function Calling Framework
2
+
3
+ ![Agentica - ReadMe Diagram](https://github.com/user-attachments/assets/ecd06d51-b818-41c8-ab31-f0e40f48034e)
4
+
5
+ <!-- Github/NPM Badges -->
6
+ <p align="center">
7
+ <a href="https://github.com/wrtnlabs/agentica/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT License"/></a>
8
+ <a href="https://www.npmjs.com/package/@agentica/core"><img src="https://img.shields.io/npm/v/@agentica/core.svg" alt="NPM Version"/></a>
9
+ <a href="https://www.npmjs.com/package/@agentica/core"><img src="https://img.shields.io/npm/dm/@agentica/core.svg" alt="NPM Downloads"/></a>
10
+ <a href="https://dormoshe.io/newsletters/373"><img src="https://img.shields.io/badge/DorMoshe%20Newsletter-Top%20%236%20of%201K-orange?style=flat&logo=rss" alt="Newsletter Top #6"/></a>
11
+ <a href="https://github.com/wrtnlabs/agentica/actions?query=workflow%3Abuild"><img src="https://github.com/wrtnlabs/agentica/workflows/build/badge.svg" alt="Build Status"/></a>
12
+ </p>
13
+
14
+ <!-- Youtube + Discord -->
15
+ <p align="center">
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>
33
+ </p>
34
+
35
+ Agentic AI framework specialized in AI Function Calling.
36
+
37
+ Don't be afraid of AI agent development. Just list functions from three protocols below. This is everything you should do for AI agent development.
38
+
39
+ - TypeScript Class
40
+ - Swagger/OpenAPI Document
41
+ - MCP (Model Context Protocol) Server
42
+
43
+ Wanna make an e-commerce agent? Bring in e-commerce functions. Need a newspaper agent? Get API functions from the newspaper company. Just prepare any functions that you need, then it becomes an AI agent.
44
+
45
+ Are you a TypeScript developer? Then you're already an AI developer. Familiar with backend development? You're already well-versed in AI development. Anyone who can make functions can make AI agents.
46
+
47
+ <!-- eslint-skip -->
48
+
49
+ ```typescript
50
+
51
+ import { Agentica, assertHttpController } from "@agentica/core";
52
+ import OpenAI from "openai";
53
+ import typia from "typia";
54
+
55
+ import { MobileFileSystem } from "./services/MobileFileSystem";
56
+
57
+ const agent = new Agentica({
58
+ vendor: {
59
+ api: new OpenAI({ apiKey: "********" }),
60
+ model: "gpt-4o-mini",
61
+ },
62
+ controllers: [
63
+ // functions from TypeScript class
64
+ typia.llm.controller<MobileFileSystem>(
65
+ "filesystem",
66
+ new MobileFileSystem(),
67
+ ),
68
+ // functions from Swagger/OpenAPI
69
+ assertHttpController({
70
+ name: "shopping",
71
+ model: "chatgpt",
72
+ document: await fetch(
73
+ "https://shopping-be.wrtn.ai/editor/swagger.json",
74
+ ).then(r => r.json()),
75
+ connection: {
76
+ host: "https://shopping-be.wrtn.ai",
77
+ headers: { Authorization: "Bearer ********" },
78
+ },
79
+ }),
80
+ ],
81
+ });
82
+ await agent.conversate("I wanna buy MacBook Pro");
83
+
84
+ ```
85
+
86
+ ## 📦 Setup
87
+
88
+ ```bash
89
+ $ npx agentica start <directory>
90
+
91
+ ----------------------------------------
92
+ Agentica Setup Wizard
93
+ ----------------------------------------
94
+ ? Package Manager (use arrow keys)
95
+ > npm
96
+ pnpm
97
+ yarn (berry is not supported)
98
+ ? Project Type
99
+ NodeJS Agent Server
100
+ > NestJS Agent Server
101
+ React Client Application
102
+ Standalone Application
103
+ ? Embedded Controllers (multi-selectable)
104
+ (none)
105
+ Google Calendar
106
+ Google News
107
+ > Github
108
+ Reddit
109
+ Slack
110
+ ...
111
+ ```
112
+
113
+ The setup wizard helps you create a new project tailored to your needs.
114
+
115
+ For reference, when selecting a project type, any option other than "Standalone Application" will implement the [WebSocket Protocol](https://wrtnlabs.io/agentica/docs/websocket/) for client-server communication.
116
+
117
+ For comprehensive setup instructions, visit our [Getting Started](https://wrtnlabs.io/agentica/docs/) guide.
118
+
119
+ ## 💻 Playground
120
+
121
+ Experience Agentica firsthand through our [interactive playground](https://wrtnlabs.io/agentica/playground) before installing.
122
+
123
+ Our demonstrations showcase the power and simplicity of Agentica's function calling capabilities across different integration methods.
124
+
125
+ - [TypeScript Class](https://wrtnlabs.io/agentica/playground/bbs)
126
+ - [Swagger/OpenAPI Document](https://wrtnlabs.io/agentica/playground/uploader)
127
+ - [Enterprise E-commerce Agent](https://wrtnlabs.io/agentica/playground/shopping)
128
+
129
+ ![E-commerce Agent Demo](https://github.com/user-attachments/assets/fbfa9f93-304c-4728-933e-deb8ecd7a2af)
130
+
131
+ <!--
132
+ @todo this section would be changed after making tutorial playground
133
+ -->
134
+
135
+ ## 📚 Documentation Resources
136
+
137
+ Find comprehensive resources at our [official website](https://wrtnlabs.io/agentica).
138
+
139
+ - [Home](https://wrtnlabs.io/agentica)
140
+ - [Guide Documents](https://wrtnlabs.io/agentica/docs)
141
+ - [Setup](https://wrtnlabs.io/agentica/docs/setup/cli/)
142
+ - [Concepts](https://wrtnlabs.io/agentica/docs/concepts/function-calling/)
143
+ - [Core Library](https://wrtnlabs.io/agentica/docs/core/)
144
+ - [WebSocket Protocol](https://wrtnlabs.io/agentica/docs/websocket/)
145
+ - [Plugin Modules](https://wrtnlabs.io/agentica/docs/plugins/benchmark/)
146
+ - [Tutorial](https://wrtnlabs.io/agentica/tutorial)
147
+ - [Productivity](https://wrtnlabs.io/agentica/tutorial/productivity/arxiv/)
148
+ - [Coding](https://wrtnlabs.io/agentica/tutorial/coding/file-system/)
149
+ - [React Native](https://wrtnlabs.io/agentica/tutorial/react-native/sms/)
150
+ - [Enterprise](https://wrtnlabs.io/agentica/tutorial/enterprise/shopping/)
151
+ - [API Documents](https://wrtnlabs.io/agentica/api)
152
+ - [Youtube](https://www.youtube.com/@wrtnlabs)
153
+ - [Paper](https://wrtnlabs.io/agentica/paper)
154
+
155
+ https://github.com/user-attachments/assets/2f2a4cdc-6cf1-4304-b82d-04a8ed0be0dd
156
+
157
+ > Tutorial Videos: https://www.youtube.com/@wrtnlabs
158
+
159
+ ## 🌟 Why Agentica?
160
+
161
+ ```mermaid
162
+ flowchart
163
+ subgraph "JSON Schema Specification"
164
+ schemav4("JSON Schema v4 ~ v7") --upgrades--> emended[["OpenAPI v3.1 (emended)"]]
165
+ schema2910("JSON Schema 2019-03") --upgrades--> emended
166
+ schema2020("JSON Schema 2020-12") --emends--> emended
167
+ end
168
+ subgraph "Agentica"
169
+ emended --"Artificial Intelligence"--> fc{{"AI Function Calling"}}
170
+ fc --"OpenAI"--> chatgpt("ChatGPT")
171
+ fc --"Google"--> gemini("Gemini")
172
+ fc --"Anthropic"--> claude("Claude")
173
+ fc --"High-Flyer"--> deepseek("DeepSeek")
174
+ fc --"Meta"--> llama("Llama")
175
+ chatgpt --"3.1"--> custom(["Custom JSON Schema"])
176
+ gemini --"3.0"--> custom(["Custom JSON Schema"])
177
+ claude --"3.1"--> standard(["Standard JSON Schema"])
178
+ deepseek --"3.1"--> standard
179
+ llama --"3.1"--> standard
180
+ end
181
+ ```
182
+
183
+ Agentica enhances AI function calling by the following strategies:
184
+
185
+ - [**Compiler Driven Development**](https://wrtnlabs.io/agentica/docs/concepts/compiler-driven-development): constructs function calling schema automatically by compiler skills without hand-writing.
186
+ - [**JSON Schema Conversion**](https://wrtnlabs.io/agentica/docs/core/vendor/#schema-specification): automatically handles specification differences between LLM vendors, ensuring seamless integration regardless of your chosen AI model.
187
+ - [**Validation Feedback**](https://wrtnlabs.io/agentica/docs/concepts/function-calling#validation-feedback): detects and corrects AI mistakes in argument composition, dramatically reducing errors and improving reliability.
188
+ - [**Selector Agent**](https://wrtnlabs.io/agentica/docs/concepts/function-calling#orchestration-strategy): filtering candidate functions to minimize context usage, optimize performance, and reduce token consumption.
189
+
190
+ Thanks to these innovations, Agentica makes AI function calling easier, safer, and more accurate than before. Development becomes more intuitive since you only need to prepare functions relevant to your specific use case, and scaling your agent's capabilities is as simple as adding or removing functions.
191
+
192
+ In 2023, when OpenAI announced function calling, many predicted that function calling-driven AI development would become the mainstream. However, in reality, due to the difficulty and instability of function calling, the trend in AI development became agent workflow. Agent workflow, which is inflexible and must be created for specific purposes, has conquered the AI agent ecosystem.
193
+
194
+ By the way, as Agentica has resolved the difficulty and instability problems of function calling, the time has come to embrace function-driven AI development once again.
195
+
196
+ | Type | Workflow | Vanilla Function Calling | Agentica Function Calling |
197
+ | ----------- | ------------- | ------------------------ | ------------------------- |
198
+ | Purpose | ❌ Specific | 🟢 General | 🟢 General |
199
+ | Difficulty | ❌ Difficult | ❌ Difficult | 🟢 Easy |
200
+ | Stability | 🟢 Stable | ❌ Unstable | 🟢 Stable |
201
+ | Flexibility | ❌ Inflexible | 🟢 Flexible | 🟢 Flexible |
202
+
203
+ ## 💬 Community & Support
204
+
205
+ For support, questions, or to provide feedback, join our Discord community:
206
+
207
+ [![Discord](https://dcbadge.limes.pink/api/server/https://discord.gg/aMhRmzkqCx)](https://discord.gg/aMhRmzkqCx)
208
+
209
+ ## ⚖️ License
210
+
211
+ Agentica is open-source and available under the [MIT License](https://github.com/wrtnlabs/agentica/blob/master/LICENSE).
212
+
213
+ <p align="center">
214
+ <img src="https://github.com/user-attachments/assets/ecd0b82e-bfb7-4eb5-ae97-75be0cb22f10" alt="Wrtn Labs Logo" />
215
+ </p>
216
+ <div align="center">
217
+ Agentica is maintained by <a href="https://wrtnlabs.io">Wrtn Technologies</a> &mdash; Empowering developers to transform TypeScript functions and OpenAPI specs into powerful AI agents.
218
+ </div>
package/bin/index.mjs CHANGED
@@ -1,3 +1,3 @@
1
- #!/usr/bin/env node
2
- import { run } from '../dist/index.mjs';
3
- run();
1
+ #!/usr/bin/env node
2
+ import { run } from '../dist/index.mjs';
3
+ run();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agentica",
3
3
  "type": "module",
4
- "version": "0.44.0-dev.20260313",
4
+ "version": "0.44.0",
5
5
  "description": "Agentic AI Library specialized in LLM Function Calling",
6
6
  "author": "Wrtn Technologies",
7
7
  "license": "MIT",