Skip to Content

Agentica

Logo

Guide Documents · Playground · Github Repository

The simplest Agentic AI library, specialized in LLM Function Calling.

Don’t compose complicate agent graph or workflow, but just deliver Swagger/OpenAPI documents or TypeScript class types linearly to the agentica. Then agentica will do everything with the function calling.

Look at the below demonstration, and feel how agentica is easy and powerful. You can let users to search and purchase products only with conversation texts. The backend API and TypeScript class functions would be adequately called in the AI chatbot with LLM function calling.

import { Agentica } from "@agentica/core"; import typia from "typia"; const agent = new Agentica({ controllers: [ await fetch( "https://shopping-be.wrtn.ai/editor/swagger.json", ).then(r => r.json()), typia.llm.application<ShoppingCounselor>(), typia.llm.application<ShoppingPolicy>(), typia.llm.application<ShoppingSearchRag>(), ], }); await agent.conversate("I wanna buy MacBook Pro");

Last updated on