Skip to content

Commit bcdbbe4

Browse files
torresmateofaridun-ag2github-actions[bot]
authored
Add ag2 framework guide (#888)
* Add AG2 framework integration guide Adds documentation for using Arcade tools with AG2 (formerly AutoGen), an open-source multi-agent framework. Includes quick start example with AssistantAgent + ConversableAgent pattern and register_for_llm/register_for_execution tool registration. * replicated the structure of other tutorials on the AG2 integration getting started guide * 🤖 Regenerate LLMs.txt --------- Co-authored-by: Faridun Mirzoev <faridun@ag2.ai> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 95e8658 commit bcdbbe4

7 files changed

Lines changed: 631 additions & 2 deletions

File tree

app/_components/agent-framework-tabs.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ export function AgentFrameworkTabs() {
66
<Tabs items={["Python", "JavaScript"]} storageKey="preferredLanguage">
77
<Tabs.Tab>
88
<div className="mt-6 grid gap-3 sm:grid-cols-2 sm:gap-4 md:gap-5 lg:grid-cols-3">
9+
<PlatformCard
10+
icon="/images/icons/ag2.svg"
11+
invertInDark
12+
link="/en/get-started/agent-frameworks/ag2/use-arcade-tools"
13+
name="AG2"
14+
type="Agent Framework"
15+
/>
916
<PlatformCard
1017
icon="https://avatars.githubusercontent.com/u/170677839?s=200&v=4"
1118
link="/en/get-started/agent-frameworks/crewai/use-arcade-tools"

app/en/get-started/agent-frameworks/_meta.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ export const meta: MetaRecord = {
77
"setup-arcade-with-your-llm-python": {
88
title: "Setup Arcade with your LLM (Python)",
99
},
10+
ag2: {
11+
title: "AG2",
12+
},
1013
crewai: {
1114
title: "CrewAI",
1215
},
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import type { MetaRecord } from "nextra";
2+
3+
const meta: MetaRecord = {
4+
"*": {
5+
theme: {
6+
breadcrumb: true,
7+
toc: true,
8+
copyPage: true,
9+
},
10+
},
11+
"use-arcade-tools": {
12+
title: "Setup Arcade tools with AG2",
13+
},
14+
};
15+
16+
export default meta;

0 commit comments

Comments
 (0)