AgenticX Agent Builder
Guide for creating production-grade agents in AgenticX.
Core Concepts
An Agent in AgenticX consists of:
- Identity: id, name, role, goal
- LLM Provider: the language model backend
- Tools: functions the agent can invoke
- Executor: the runtime that orchestrates agent reasoning
Creating an Agent
Minimal Agent
from agenticx import Agent, Task, AgentExecutor
from agenticx.llms import OpenAIProvider
agent = Agent(
id="assistant"
[Description truncada. Veja o README completo no GitHub.]