Documentation Index
Fetch the complete documentation index at: https://docs.aihubmix.com/llms.txt
Use this file to discover all available pages before exploring further.
"versions" in your docs.json can be leveraged to partition your navigation into different versions.
{
"navigation": {
"versions": [
{
"version": "1.0.0",
"groups": [
{
"group": "Getting Started",
"pages": ["v1/overview", "v1/quickstart", "v1/development"]
}
]
},
{
"version": "2.0.0",
"groups": [
{
"group": "Getting Started",
"pages": ["v2/overview", "v2/quickstart", "v2/development"]
}
]
}
]
}
}
You can also add versioning to a specific section of your docs by nesting a version.
{
"tabs": [
{
"tab": "Guides",
"pages": ["overview", "quickstart"]
},
{
"tab": "SDKs",
"versions": [
{
"version": "latest",
"anchors": [
{
"anchor": "Javascript",
"pages": ["sdk/js/create", "sdk/js/edit", "sdk/js/delete"]
},
{
"anchor": "Python",
"pages": ["sdk/py/create", "sdk/py/edit", "sdk/py/delete"]
}
]
}
]
}
]
}