UNPKG

@agentica/rpc

Version:

Agentic AI Library specialized in LLM Function Calling

219 lines (172 loc) 10.1 kB
# Agentica, AI Function Calling Framework ![Agentica - ReadMe Diagram](https://github.com/user-attachments/assets/ecd06d51-b818-41c8-ab31-f0e40f48034e) <!-- Github/NPM Badges --> <p align="center"> <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> <a href="https://www.npmjs.com/package/@agentica/core"><img src="https://img.shields.io/npm/v/@agentica/core.svg" alt="NPM Version"/></a> <a href="https://www.npmjs.com/package/@agentica/core"><img src="https://img.shields.io/npm/dm/@agentica/core.svg" alt="NPM Downloads"/></a> <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> <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> </p> <!-- Youtube + Discord --> <p align="center"> <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; <a href="https://discord.gg/aMhRmzkqCx"> <img src="https://img.shields.io/badge/Discord-0d1117?style=social&logo=discord" alt="Discord"/> </a> </p> <p align="center"> <a href="https://www.bloomberg.com/news/videos/2025-03-31/wtrn-on-series-b-funding-growth-strategy-video"> <img src="https://wrtnlabs.io/agentica/images/badges/fund-raising-news-202503.svg" /> </a> &nbsp;&nbsp; <a href="https://github.com/wrtnlabs"> <img src="https://wrtnlabs.io/agentica/images/badges/open-source-mission.svg" /> </a> </p> Agentic AI framework specialized in AI Function Calling. 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. - TypeScript Class - Swagger/OpenAPI Document - MCP (Model Context Protocol) Server 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. 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. <!-- eslint-skip --> ```typescript import { Agentica, assertHttpController } from "@agentica/core"; import OpenAI from "openai"; import typia from "typia"; import { MobileFileSystem } from "./services/MobileFileSystem"; const agent = new Agentica({ vendor: { api: new OpenAI({ apiKey: "********" }), model: "gpt-4o-mini", }, controllers: [ // functions from TypeScript class typia.llm.controller<MobileFileSystem, "chatgpt">( "filesystem", MobileFileSystem(), ), // functions from Swagger/OpenAPI assertHttpController({ name: "shopping", model: "chatgpt", document: await fetch( "https://shopping-be.wrtn.ai/editor/swagger.json", ).then(r => r.json()), connection: { host: "https://shopping-be.wrtn.ai", headers: { Authorization: "Bearer ********" }, }, }), ], }); await agent.conversate("I wanna buy MacBook Pro"); ``` ## 📦 Setup ```bash $ npx agentica start <directory> ---------------------------------------- Agentica Setup Wizard ---------------------------------------- ? Package Manager (use arrow keys) > npm pnpm yarn (berry is not supported) ? Project Type NodeJS Agent Server > NestJS Agent Server React Client Application Standalone Application ? Embedded Controllers (multi-selectable) (none) Google Calendar Google News > Github Reddit Slack ... ``` The setup wizard helps you create a new project tailored to your needs. 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. For comprehensive setup instructions, visit our [Getting Started](https://wrtnlabs.io/agentica/docs/) guide. ## 💻 Playground Experience Agentica firsthand through our [interactive playground](https://wrtnlabs.io/agentica/playground) before installing. Our demonstrations showcase the power and simplicity of Agentica's function calling capabilities across different integration methods. - [TypeScript Class](https://wrtnlabs.io/agentica/playground/bbs) - [Swagger/OpenAPI Document](https://wrtnlabs.io/agentica/playground/uploader) - [Enterprise E-commerce Agent](https://wrtnlabs.io/agentica/playground/shopping) ![E-commerce Agent Demo](https://github.com/user-attachments/assets/fbfa9f93-304c-4728-933e-deb8ecd7a2af) <!-- @todo this section would be changed after making tutorial playground --> ## 📚 Documentation Resources Find comprehensive resources at our [official website](https://wrtnlabs.io/agentica). - [Home](https://wrtnlabs.io/agentica) - [Guide Documents](https://wrtnlabs.io/agentica/docs) - [Setup](https://wrtnlabs.io/agentica/docs/setup/cli/) - [Concepts](https://wrtnlabs.io/agentica/docs/concepts/function-calling/) - [Core Library](https://wrtnlabs.io/agentica/docs/core/) - [WebSocket Protocol](https://wrtnlabs.io/agentica/docs/websocket/) - [Plugin Modules](https://wrtnlabs.io/agentica/docs/plugins/benchmark/) - [Tutorial](https://wrtnlabs.io/agentica/tutorial) - [Productivity](https://wrtnlabs.io/agentica/tutorial/productivity/arxiv/) - [Coding](https://wrtnlabs.io/agentica/tutorial/coding/file-system/) - [React Native](https://wrtnlabs.io/agentica/tutorial/react-native/sms/) - [Enterprise](https://wrtnlabs.io/agentica/tutorial/enterprise/shopping/) - [API Documents](https://wrtnlabs.io/agentica/api) - [Youtube](https://www.youtube.com/@wrtnlabs) - [Paper](https://wrtnlabs.io/agentica/paper) https://github.com/user-attachments/assets/2f2a4cdc-6cf1-4304-b82d-04a8ed0be0dd > Tutorial Videos: https://www.youtube.com/@wrtnlabs ## 🌟 Why Agentica? ```mermaid flowchart subgraph "JSON Schema Specification" schemav4("JSON Schema v4 ~ v7") --upgrades--> emended[["OpenAPI v3.1 (emended)"]] schema2910("JSON Schema 2019-03") --upgrades--> emended schema2020("JSON Schema 2020-12") --emends--> emended end subgraph "Agentica" emended --"Artificial Intelligence"--> fc{{"AI Function Calling"}} fc --"OpenAI"--> chatgpt("ChatGPT") fc --"Google"--> gemini("Gemini") fc --"Anthropic"--> claude("Claude") fc --"High-Flyer"--> deepseek("DeepSeek") fc --"Meta"--> llama("Llama") chatgpt --"3.1"--> custom(["Custom JSON Schema"]) gemini --"3.0"--> custom(["Custom JSON Schema"]) claude --"3.1"--> standard(["Standard JSON Schema"]) deepseek --"3.1"--> standard llama --"3.1"--> standard end ``` Agentica enhances AI function calling by the following strategies: - [**Compiler Driven Development**](https://wrtnlabs.io/agentica/docs/concepts/compiler-driven-development): constructs function calling schema automatically by compiler skills without hand-writing. - [**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. - [**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. - [**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. 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. 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. 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. | Type | Workflow | Vanilla Function Calling | Agentica Function Calling | | ----------- | ------------- | ------------------------ | ------------------------- | | Purpose | Specific | 🟢 General | 🟢 General | | Difficulty | Difficult | Difficult | 🟢 Easy | | Stability | 🟢 Stable | Unstable | 🟢 Stable | | Flexibility | Inflexible | 🟢 Flexible | 🟢 Flexible | ## 💬 Community & Support For support, questions, or to provide feedback, join our Discord community: [![Discord](https://dcbadge.limes.pink/api/server/https://discord.gg/aMhRmzkqCx)](https://discord.gg/aMhRmzkqCx) ## ⚖️ License Agentica is open-source and available under the [MIT License](https://github.com/wrtnlabs/agentica/blob/master/LICENSE). <p align="center"> <img src="https://github.com/user-attachments/assets/ecd0b82e-bfb7-4eb5-ae97-75be0cb22f10" alt="Wrtn Labs Logo" /> </p> <div align="center"> 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. </div>