fixed docs

This commit is contained in:
arkml 2025-06-04 00:44:49 +05:30
parent 53972c5fc4
commit e73d63cd7c
21 changed files with 77 additions and 31 deletions

View file

@ -1,45 +1,91 @@
{ {
"$schema": "https://mintlify.com/schema/docs.schema.json", "$schema": "https://mintlify.com/docs.json",
"name": "RowBoat Docs",
"theme": "mint", "theme": "mint",
"name": "Rowboat",
"description": "Rowboat is an open-source platform for building multi-agent systems. It helps you orchestrate tools, RAG, memory, and deployable agents with ease.",
"colors": { "colors": {
"primary": "#6366f1" "primary": "#6366F1",
"light": "#F3F4F6",
"dark": "#111827"
}, },
"navigation": { "navigation": {
"anchors": [
{
"anchor": "Documentation",
"icon": "book-open",
"tabs": [
{
"tab": "Docs",
"groups": [ "groups": [
{ {
"group": "Getting Started", "group": "Getting Started",
"pages": ["docs/setup.md"] "icon": "rocket",
"pages": ["docs/setup"]
}, },
{ {
"group": "Overview", "group": "Overview",
"pages": ["docs/index.md", "docs/license.md"] "icon": "info-circle",
"pages": ["docs/index", "docs/license"]
}, },
{ {
"group": "Building in Studio", "group": "Building in Studio",
"icon": "toolbox",
"pages": [ "pages": [
"docs/create_agents.md", "docs/create_agents",
"docs/playground.md", "docs/playground",
"docs/add_tools.md", "docs/add_tools",
"docs/update_agents.md", "docs/update_agents",
"docs/using_rag.md" "docs/using_rag"
] ]
}, },
{ {
"group": "API & SDK", "group": "API & SDK",
"pages": [ "icon": "code",
"docs/using_the_api.md", "pages": ["docs/using_the_api", "docs/using_the_sdk"]
"docs/using_the_sdk.md"
]
}, },
{ {
"group": "Concepts", "group": "Concepts",
"pages": [ "icon": "lightbulb",
"docs/agents.md", "pages": ["docs/agents", "docs/tools", "docs/prompts"]
"docs/tools.md",
"docs/prompts.md"
]
} }
] ]
} }
]
},
{
"anchor": "Website",
"href": "https://www.rowboatlabs.com",
"icon": "window"
},
{
"anchor": "GitHub",
"href": "https://github.com/rowboatlabs/rowboat",
"icon": "github"
},
{
"anchor": "Discord",
"href": "https://discord.gg/YOUR_INVITE",
"icon": "discord"
}
]
},
"background": {
"color": {
"light": "#FFFFFF",
"dark": "#0F172A"
}
},
"navbar": {
"primary": {
"type": "button",
"label": "Try Rowboat",
"href": "https://app.rowboatlabs.com"
}
},
"footer": {
"socials": {
"github": "https://github.com/rowboatlabs/rowboat",
"linkedin": "https://www.linkedin.com/company/rowboat-labs"
}
}
} }