AI SummaryA 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
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster