-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy path_ao-card-data.js
More file actions
90 lines (85 loc) · 2.66 KB
/
_ao-card-data.js
File metadata and controls
90 lines (85 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import IconAoImg from "../assets/icon-play.png";
import IconAoDesignImg from "../assets/icon-docs.png";
import IconAoAgentImg from "../assets/icon-agentic.png";
import IconAoLlmImg from "../assets/icon-llm.png";
import IconOptimize from "../assets/icon-optimize.png";
import IconConnectorImg from "../connectors/img/icon-connectors.png";
import IconOperate from "../assets/icon-operate.png";
// Get started cards on introduction page
export const getStartedCards = [
{
link: "../../../guides/getting-started-agentic-orchestration/",
title: "Build your first AI agent",
image: IconAoImg,
description: "Get started by building and running your first AI agent.",
},
];
// Fundamentals cards on introduction page
export const fundamentalCards = [
{
link: "../ai-agents/",
title: "AI agents",
image: IconAoAgentImg,
description:
"Build and integrate AI agents into your end-to-end processes.",
},
{
link: "../ao-design/",
title: "Design and architecture",
image: IconAoDesignImg,
description: "Plan and design your agentic orchestration solutions.",
},
];
// Fundamentals cards on introduction page
export const fundamentalCards_monitoring = [
{
link: "../monitor-ai-agents/",
title: "Monitor your AI agents",
image: IconOperate,
description: "Monitor your AI agents with Operate.",
},
{
link: "../analyze-ai-agents/",
title: "Analyze your AI agents",
image: IconOptimize,
description: "Analyze your AI agents with Optimize.",
},
];
// Recommendation cards on introduction page
export const recommendationCards = [
{
link: "../choose-right-model-agentic/",
title: "Choose the right LLM",
image: IconAoLlmImg,
description:
"Learn how to choose the right Large Language Model (LLM) for AI agents.",
},
{
link: "../model-recommendations-agentic/",
title: "LLM recommendations",
image: IconAoLlmImg,
description:
"Recommendations and best practices for working with models and prompts.",
},
];
export const a2aConnectorCards = [
{
link: "../a2a-client/a2a-client-connector/",
title: "A2A Client connector",
image: IconConnectorImg,
description:
"Retrieve a remote agent's Agent Card and send messages to it.",
},
{
link: "../a2a-client/a2a-client-polling-connector/",
title: "A2A Client Polling connector",
image: IconConnectorImg,
description: "Poll for responses from asynchronous A2A tasks.",
},
{
link: "../a2a-client/a2a-client-webhook-connector/",
title: "A2A Client Webhook connector",
image: IconConnectorImg,
description: "Receive callbacks from remote A2A agents via HTTP webhooks.",
},
];