docs: models recommendation
This commit is contained in:
@@ -32,7 +32,7 @@ export default function DocsLayout({ children }: DocsLayoutProps) {
|
|||||||
{
|
{
|
||||||
title: t('nav.features'),
|
title: t('nav.features'),
|
||||||
items: [
|
items: [
|
||||||
{ title: t('nav.models'), path: '/docs/features/model-integration' },
|
{ title: t('nav.models'), path: '/docs/features/models' },
|
||||||
{ title: t('nav.custom_tools'), path: '/docs/features/custom-tools' },
|
{ title: t('nav.custom_tools'), path: '/docs/features/custom-tools' },
|
||||||
{ title: t('nav.knowledge_injection'), path: '/docs/features/custom-instructions' },
|
{ title: t('nav.knowledge_injection'), path: '/docs/features/custom-instructions' },
|
||||||
{ title: t('nav.data_masking'), path: '/docs/features/data-masking' },
|
{ title: t('nav.data_masking'), path: '/docs/features/data-masking' },
|
||||||
|
|||||||
@@ -4,13 +4,19 @@ import CodeEditor from '@/components/CodeEditor'
|
|||||||
|
|
||||||
// Recommended models: lightweight with excellent tool call capabilities
|
// Recommended models: lightweight with excellent tool call capabilities
|
||||||
const MODELS = {
|
const MODELS = {
|
||||||
recommended: ['gpt-4.1-mini', 'claude-haiku-4.5', 'gemini-3-flash', 'deepseek-3.2', 'gpt-5.2'],
|
recommended: [
|
||||||
verified: [
|
'gpt-4.1-mini',
|
||||||
|
'claude-haiku-4.5',
|
||||||
|
'gemini-3-flash',
|
||||||
|
'deepseek-3.2',
|
||||||
|
'gpt-5.2',
|
||||||
'qwen-3-max',
|
'qwen-3-max',
|
||||||
|
],
|
||||||
|
verified: [
|
||||||
|
'qwen-3-plus',
|
||||||
'gpt-4.1',
|
'gpt-4.1',
|
||||||
'gpt-5',
|
'gpt-5',
|
||||||
'gpt-5-mini',
|
'gpt-5-mini',
|
||||||
'gpt-5.1',
|
|
||||||
'grok-4',
|
'grok-4',
|
||||||
'grok-code-fast',
|
'grok-code-fast',
|
||||||
'claude-sonnet-3.5',
|
'claude-sonnet-3.5',
|
||||||
@@ -21,7 +27,7 @@ const MODELS = {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function ModelIntegration() {
|
export default function Models() {
|
||||||
const { t } = useTranslation('docs')
|
const { t } = useTranslation('docs')
|
||||||
const allModels = [...MODELS.recommended, ...MODELS.verified]
|
const allModels = [...MODELS.recommended, ...MODELS.verified]
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@ import DocsLayout from './pages/docs/Layout'
|
|||||||
import Instructions from './pages/docs/features/custom-instructions/page'
|
import Instructions from './pages/docs/features/custom-instructions/page'
|
||||||
import CustomTools from './pages/docs/features/custom-tools/page'
|
import CustomTools from './pages/docs/features/custom-tools/page'
|
||||||
import DataMasking from './pages/docs/features/data-masking/page'
|
import DataMasking from './pages/docs/features/data-masking/page'
|
||||||
import ModelIntegration from './pages/docs/features/model-integration/page'
|
import Models from './pages/docs/features/models/page'
|
||||||
// Integration pages
|
// Integration pages
|
||||||
import BestPractices from './pages/docs/integration/best-practices/page'
|
import BestPractices from './pages/docs/integration/best-practices/page'
|
||||||
import CdnSetup from './pages/docs/integration/cdn-setup/page'
|
import CdnSetup from './pages/docs/integration/cdn-setup/page'
|
||||||
@@ -80,11 +80,11 @@ export default function Router() {
|
|||||||
</div>
|
</div>
|
||||||
</Route>
|
</Route>
|
||||||
|
|
||||||
<Route path="/docs/features/model-integration">
|
<Route path="/docs/features/models">
|
||||||
<div className="min-h-screen bg-white dark:bg-gray-900">
|
<div className="min-h-screen bg-white dark:bg-gray-900">
|
||||||
<Header />
|
<Header />
|
||||||
<DocsLayout>
|
<DocsLayout>
|
||||||
<ModelIntegration />
|
<Models />
|
||||||
</DocsLayout>
|
</DocsLayout>
|
||||||
</div>
|
</div>
|
||||||
</Route>
|
</Route>
|
||||||
|
|||||||
Reference in New Issue
Block a user