refactor: rename Tool.alpha to Tool.experimental

This commit is contained in:
Siddharth Kumar Sah
2026-03-26 01:10:51 +08:00
parent ab370a74fe
commit 585d66f0c9
178 changed files with 5637 additions and 4082 deletions
+29 -33
View File
@@ -1,59 +1,55 @@
import { defineConfig } from 'vitepress'
import { defineConfig } from "vitepress";
export default defineConfig({
title: "Stirling Image",
description: "Documentation for Stirling Image, a self-hosted image processing suite.",
base: '/Stirling-Image/',
srcDir: '.',
outDir: './.vitepress/dist',
base: "/Stirling-Image/",
srcDir: ".",
outDir: "./.vitepress/dist",
head: [
['meta', { name: 'theme-color', content: '#3b82f6' }],
],
head: [["meta", { name: "theme-color", content: "#3b82f6" }]],
themeConfig: {
nav: [
{ text: 'Home', link: '/' },
{ text: 'Guide', link: '/guide/getting-started' },
{ text: 'API Reference', link: '/api/rest' }
{ text: "Home", link: "/" },
{ text: "Guide", link: "/guide/getting-started" },
{ text: "API Reference", link: "/api/rest" },
],
sidebar: [
{
text: 'Guide',
text: "Guide",
items: [
{ text: 'Getting started', link: '/guide/getting-started' },
{ text: 'Architecture', link: '/guide/architecture' },
{ text: 'Configuration', link: '/guide/configuration' },
{ text: 'Database', link: '/guide/database' },
{ text: 'Deployment', link: '/guide/deployment' }
]
{ text: "Getting started", link: "/guide/getting-started" },
{ text: "Architecture", link: "/guide/architecture" },
{ text: "Configuration", link: "/guide/configuration" },
{ text: "Database", link: "/guide/database" },
{ text: "Deployment", link: "/guide/deployment" },
],
},
{
text: 'API reference',
text: "API reference",
items: [
{ text: 'REST API', link: '/api/rest' },
{ text: 'Image engine', link: '/api/image-engine' },
{ text: 'AI engine', link: '/api/ai' }
]
}
{ text: "REST API", link: "/api/rest" },
{ text: "Image engine", link: "/api/image-engine" },
{ text: "AI engine", link: "/api/ai" },
],
},
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/siddharthksah/Stirling-Image' }
],
socialLinks: [{ icon: "github", link: "https://github.com/siddharthksah/Stirling-Image" }],
search: {
provider: 'local'
provider: "local",
},
footer: {
message: 'Released under the MIT License.',
message: "Released under the MIT License.",
},
editLink: {
pattern: 'https://github.com/siddharthksah/Stirling-Image/edit/main/apps/docs/:path',
text: 'Edit this page on GitHub'
}
}
})
pattern: "https://github.com/siddharthksah/Stirling-Image/edit/main/apps/docs/:path",
text: "Edit this page on GitHub",
},
},
});