Skip to content
Agent

Creating Agents

by Koredotcom

AI Summary

A comprehensive guide to creating and configuring AI agents in the AgenticAI Core SDK, enabling developers to build autonomous agents with specific roles, LLM decision-making, and reusable tools. Essential for developers building multi-agent applications.

Install

Copy this and paste it into Claude Code, Cursor, or any AI assistant:

I want to set up the "Creating Agents" agent in my project.

Please run this command in my terminal:
# Add AGENTS.md to your project root
curl --retry 3 --retry-delay 2 --retry-all-errors -o AGENTS.md "https://raw.githubusercontent.com/Koredotcom/docs/dev/docs/agent-platform/sdk/guide/creating-agents.md"

Then explain what the agent does and how to invoke it.

Description

Kore - All product related documentation

Overview

Agents are the core building blocks of your application. Each agent is an autonomous entity with: • Specific role and responsibilities • LLM configuration for decision-making • Tools to perform actions • Prompts that define behavior

Define tools

tool1 = Tool(name="GetBalance", type="toolLibrary", ...) tool2 = Tool(name="Transfer", type="toolLibrary", ...)

Build agent with tools

agent_config = AgentBuilder() \ .set_name("BankingAgent") \ .set_description("Banking operations agent") \ .set_role("WORKER") \ .set_sub_type("REACT") \ .set_type("AUTONOMOUS") \ .set_llm_model(llm_model) \ .set_prompt(prompt) \ .set_tool(tool1) \ .set_tool(tool2) \ .build() agent = Agent(**agent_config) `

Creating Agents

Learn how to create and configure AI agents in the AgenticAI Core SDK.

Discussion

0/2000
Loading comments...

Health Signals

MaintenanceCommitted 1mo ago
Active
AdoptionUnder 100 stars
2 ★ · Niche
DocsMissing or thin
Undocumented

GitHub Signals

Stars2
Forks19
Issues1
Updated1mo ago
View on GitHub
GPL-3.0 License

My Fox Den

Community Rating

Sign in to rate this booster

Works With

Claude Code
Claude.ai