diff --git a/docs/evaluation/index.mdx b/docs/evaluation/index.mdx index f9793010..e94abff4 100644 --- a/docs/evaluation/index.mdx +++ b/docs/evaluation/index.mdx @@ -12,7 +12,7 @@ import { } from "@site/src/components/InstructionsWithCode"; import { RegionalUrl } from "@site/src/components/RegionalUrls"; -# Evaluation quick start +# Evaluation Quick Start This quick start will get you up and running with our evaluation SDK and Experiments UI. diff --git a/docs/index.mdx b/docs/index.mdx index b9691880..f38f08d8 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -14,15 +14,15 @@ It allows you to closely monitor and evaluate your application, so you can ship ![](./static/get_started.png)
-

Observability

+

[Observability](./observability)

Analyze traces in LangSmith and configure metrics, dashboards, alerts based on these. -

Evals

+

[Evals](./evaluation)

Evaluate your application over production traffic — score application performance and get human feedback on your data. -

Prompt Engineering

+

[Prompt Engineering](./prompt_engineering/quickstarts/quickstart_ui)

Iterate on prompts, with automatic version control and collaboration features. diff --git a/sidebars.js b/sidebars.js index b681a02c..9e9cde97 100644 --- a/sidebars.js +++ b/sidebars.js @@ -26,6 +26,7 @@ const sidebars = { { type: "category", label: "Observability", + className: "no-highlight", items: [ "observability/index", { @@ -73,6 +74,7 @@ const sidebars = { { type: "category", label: "Evaluation", + className: "no-highlight", items: [ "evaluation/index", { @@ -120,10 +122,12 @@ const sidebars = { { type: "category", label: "Prompt Engineering", + className: "no-highlight", items: [ { type: "category", label: "Quickstarts", + className: "no-highlight", collapsible: true, items: [ "prompt_engineering/quickstarts/quickstart_ui", diff --git a/src/css/custom.css b/src/css/custom.css index 8543d1ef..4aa440cc 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -426,4 +426,12 @@ div[class^='announcementBar_'] { font-size: 20px; background-color: #d0c9feff; font-weight: bold; +} + +.no-highlight > .menu__list-item-collapsible:hover { + background: var(--ifm-menu-color-background-hover) !important; +} + +.no-highlight > .menu__list-item-collapsible { + background: transparent !important; } \ No newline at end of file