📄️ Prompting Techniques
Chain of Thought (CoT)
📄️ Creating a Workflow
Workflows implement business logic. They sit at the top of the stack, orchestrating integrations and querying the knowledge graph to fulfill specific user intents. They are exposed as agent tools and as REST API endpoints.
📄️ Creating an Agent
ABI agents use the Agent.New() class method pattern. The agent is self-contained: name, system prompt, tools, and intent registration are all in one place.
📄️ Creating an Integration
Integrations are the external API adapters in ABI. They are the smallest, most atomic units - they talk to a specific external service and nothing else. They do not depend on pipelines, workflows, or agents.