From 0f118df9106c1c6fe728552eec1bff1ae486a7db Mon Sep 17 00:00:00 2001 From: Robert Brennan Date: Fri, 6 Sep 2024 09:51:45 -0400 Subject: [PATCH] Docs: fix "architecture" and "llms" sections (#3749) * fix llm docs * fix architecture --- .../{architecture.mdx => backend.mdx} | 0 docs/sidebars.ts | 68 +++++++++++++------ 2 files changed, 48 insertions(+), 20 deletions(-) rename docs/modules/usage/architecture/{architecture.mdx => backend.mdx} (100%) diff --git a/docs/modules/usage/architecture/architecture.mdx b/docs/modules/usage/architecture/backend.mdx similarity index 100% rename from docs/modules/usage/architecture/architecture.mdx rename to docs/modules/usage/architecture/backend.mdx diff --git a/docs/sidebars.ts b/docs/sidebars.ts index 5c02ccc3adb9..2afd99c6e507 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -17,30 +17,58 @@ const sidebars: SidebarsConfig = { }, { type: 'category', label: 'How-to Guides', - items: [{ - type: 'doc', - id: 'usage/how-to/cli-mode', - }, { - type: 'doc', - id: 'usage/how-to/headless-mode', - }, { - type: 'doc', - id: 'usage/how-to/custom-sandbox-guide', - }, { - type: 'doc', - id: 'usage/how-to/evaluation-harness', - }, { - type: 'doc', - id: 'usage/how-to/openshift-example', - }] + items: [{ + type: 'doc', + id: 'usage/how-to/cli-mode', + }, { + type: 'doc', + id: 'usage/how-to/headless-mode', + }, { + type: 'doc', + id: 'usage/how-to/custom-sandbox-guide', + }, { + type: 'doc', + id: 'usage/how-to/evaluation-harness', + }, { + type: 'doc', + id: 'usage/how-to/openshift-example', + }] }, { - type: 'doc', + type: 'category', label: 'LLMs', - id: 'usage/llms/llms', + items: [{ + type: 'doc', + label: 'Overview', + id: 'usage/llms/llms', + }, { + type: 'doc', + label: 'OpenAI', + id: 'usage/llms/openai-llms', + }, { + type: 'doc', + label: 'Azure', + id: 'usage/llms/azure-llms', + }, { + type: 'doc', + label: 'Google', + id: 'usage/llms/google-llms', + }, { + type: 'doc', + label: 'Local/ollama', + id: 'usage/llms/local-llms', + }], }, { - type: 'doc', + type: 'category', label: 'Architecture', - id: 'usage/architecture/architecture', + items: [{ + type: 'doc', + label: 'Backend', + id: 'usage/architecture/backend', + }, { + type: 'doc', + label: 'Runtime', + id: 'usage/architecture/runtime', + }], }, { type: 'doc', label: 'About',