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": {
"groups": [ "anchors": [
{ {
"group": "Getting Started", "anchor": "Documentation",
"pages": ["docs/setup.md"] "icon": "book-open",
}, "tabs": [
{ {
"group": "Overview", "tab": "Docs",
"pages": ["docs/index.md", "docs/license.md"] "groups": [
}, {
{ "group": "Getting Started",
"group": "Building in Studio", "icon": "rocket",
"pages": [ "pages": ["docs/setup"]
"docs/create_agents.md", },
"docs/playground.md", {
"docs/add_tools.md", "group": "Overview",
"docs/update_agents.md", "icon": "info-circle",
"docs/using_rag.md" "pages": ["docs/index", "docs/license"]
},
{
"group": "Building in Studio",
"icon": "toolbox",
"pages": [
"docs/create_agents",
"docs/playground",
"docs/add_tools",
"docs/update_agents",
"docs/using_rag"
]
},
{
"group": "API & SDK",
"icon": "code",
"pages": ["docs/using_the_api", "docs/using_the_sdk"]
},
{
"group": "Concepts",
"icon": "lightbulb",
"pages": ["docs/agents", "docs/tools", "docs/prompts"]
}
]
}
] ]
}, },
{ {
"group": "API & SDK", "anchor": "Website",
"pages": [ "href": "https://www.rowboatlabs.com",
"docs/using_the_api.md", "icon": "window"
"docs/using_the_sdk.md"
]
}, },
{ {
"group": "Concepts", "anchor": "GitHub",
"pages": [ "href": "https://github.com/rowboatlabs/rowboat",
"docs/agents.md", "icon": "github"
"docs/tools.md", },
"docs/prompts.md" {
] "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"
}
} }
} }