1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/docusaurus/sidebar-ai-agents.js
Teal Larson b5d18c1c74 embedded quick start and rearranging a few things (#67613)
## What

Based on some customer feedback that our setup guides were a bit
difficult to follow and they just wanted a one page step-by-step.

- Adds a straight shooting one-page guide for folks embedding us into an
existing application
- Moves existing getting started guides that showcased demo applications
into a "Tutorials" area

This does depend on https://github.com/airbytehq/sonar/pull/1049 being
merged, which moves the Applications Token endpoint to the public Sonar
API (another request from that customer!)
2025-10-13 09:21:35 -04:00

56 lines
1.3 KiB
JavaScript

export default {
"ai-agents": [
{
type: "category",
collapsible: false,
label: "AI Agents",
link: {
type: "doc",
id: "README",
},
items: [
{
type: "category",
label: "Embedded",
items: [
{
type: "category",
label: "Widget",
items: [
"embedded/widget/quickstart",
{
type: "category",
label: "Tutorials",
items: [
"embedded/widget/tutorials/prerequisites-setup",
"embedded/widget/tutorials/develop-your-app",
"embedded/widget/tutorials/use-embedded",
]
},
"embedded/widget/managing-embedded",
"embedded/widget/template-tags",
]
},
{
type: "category",
label: "API",
items: [
"embedded/api/README",
"embedded/api/connection-templates",
"embedded/api/source-templates",
"embedded/api/configuring-sources",
]
},
]
},
{
type: "doc",
id: "pyairbyte-mcp/README",
label: "PyAirbyte MCP",
}
]
}
],
};