forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllamaindex.ts
More file actions
59 lines (57 loc) · 2.75 KB
/
Copy pathllamaindex.ts
File metadata and controls
59 lines (57 loc) · 2.75 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
// @generated by scripts/extract-framework-overviews.ts — do not edit by hand.
import type { FrameworkOverviewData } from "./types";
const data: FrameworkOverviewData = {
slug: "llamaindex",
frameworkName: "LlamaIndex",
iconKey: "llamaindex",
header: "Bring your LlamaIndex agents to your users",
subheader:
"Give your LlamaIndex agents real user-interactivity using CopilotKit and AG-UI. Build rich, interactive, agent-powered applications.",
bannerVideo:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/overview.mp4",
guideLink: "/llamaindex/quickstart",
initCommand: "npx copilotkit@latest init",
featuresLink:
"https://feature-viewer.copilotkit.ai/llama-index/feature/agentic_chat",
supportedFeatures: [
{
title: "Human in the Loop",
description:
"Empower users to guide agents at key checkpoints. Combine the best of AI and human judgment for more reliable and controllable agent behavior.",
documentationLink: "/llamaindex/human-in-the-loop",
demoLink: "https://examples-coagents-ai-travel-app.vercel.app/",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/images/coagents/human-in-the-loop-example.mp4",
},
{
title: "Shared State",
description:
"Keep your agent and your app in sync. Your agent can see everything in your app, and your app can react to your agent in real-time.",
documentationLink: "/llamaindex/shared-state",
demoLink:
"https://feature-viewer.copilotkit.ai/llama-index/feature/shared_state",
videoUrl:
"https://cdn.copilotkit.ai/docs/copilotkit/videos/coagents/shared-state.mp4",
},
],
architectureImage:
"https://cdn.copilotkit.ai/docs/copilotkit/images/generic-agui-architecture.png",
liveDemos: [
{
type: "saas",
title: "SaaS Copilot",
description:
"A traditional SaaS application enhanced with AI agents. These copilots integrate seamlessly into existing workflows, providing intelligent assistance for specific business processes. Perfect for customer service, sales automation, project management, and domain-specific tasks where users need guided, step-by-step AI assistance.",
iframeUrl:
"https://examples-coagents-ai-travel-app.vercel.app?copilotOpen=true",
},
{
type: "canvas",
title: "Canvas Copilot",
description:
"An infinite canvas interface where users collaborate with AI agents in a spatial, visual environment. These copilots excel at research, brainstorming, content creation, and complex problem-solving where information needs to be organized, connected, and explored in a non-linear, creative way.",
iframeUrl: "https://examples-coagents-research-canvas-ui.vercel.app/",
},
],
};
export default data;