diff --git a/app/_components/agent-framework-tabs.tsx b/app/_components/agent-framework-tabs.tsx new file mode 100644 index 000000000..ea472faaf --- /dev/null +++ b/app/_components/agent-framework-tabs.tsx @@ -0,0 +1,75 @@ +import { Tabs } from "nextra/components"; +import { PlatformCard } from "@/app/_components/platform-card"; + +export function AgentFrameworkTabs() { + return ( + + +
+ + + + + +
+
+ +
+ + + + +
+
+
+ ); +} diff --git a/app/en/get-started/agent-frameworks/page.mdx b/app/en/get-started/agent-frameworks/page.mdx index 062cd1908..08ce38a4b 100644 --- a/app/en/get-started/agent-frameworks/page.mdx +++ b/app/en/get-started/agent-frameworks/page.mdx @@ -1,5 +1,4 @@ -import { PlatformCard } from "@/app/_components/platform-card"; -import { Tabs } from "nextra/components"; +import { AgentFrameworkTabs } from "@/app/_components/agent-framework-tabs"; # Arcade with Agent Frameworks and MCP Clients @@ -9,71 +8,4 @@ These guides are for developers building AI applications who need to connect Arc ## Agent Frameworks - - -
- - - - - -
-
- -
- - - - -
-
-
+ diff --git a/app/en/get-started/quickstarts/call-tool-agent/page.mdx b/app/en/get-started/quickstarts/call-tool-agent/page.mdx index c9ffd61d6..8b85f65bd 100644 --- a/app/en/get-started/quickstarts/call-tool-agent/page.mdx +++ b/app/en/get-started/quickstarts/call-tool-agent/page.mdx @@ -5,6 +5,7 @@ description: "Learn how to call tools in your agent" import { Steps, Tabs, Callout } from "nextra/components"; import { SignupLink } from "@/app/_components/analytics"; +import { AgentFrameworkTabs } from "@/app/_components/agent-framework-tabs"; # Calling tools in your agent with Arcade @@ -374,9 +375,11 @@ console.log(respose_send_email.output?.value); ## Next Steps -In this simple example, we call the tool methods directly. In your real applications and agents, you'll likely be letting the LLM decide which tools to call. Learn more about using Arcade with Frameworks in the [Frameworks](/get-started/agent-frameworks) section, or [how to build your own tools](/guides/create-tools/tool-basics/build-mcp-server). +In this example, we call the tool methods directly. In your real applications and agents, you'll likely be letting the LLM decide which tools to call. Learn more about using Arcade with Frameworks in the [Frameworks](/get-started/agent-frameworks) section, or [how to build your own tools](/guides/create-tools/tool-basics/build-mcp-server). -## Example Code + + +## Full Example Code diff --git a/next-env.d.ts b/next-env.d.ts index 9edff1c7c..c4b7818fb 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/types/routes.d.ts"; +import "./.next/dev/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.