Skip to content

Commit 2810139

Browse files
authored
quick start improvements (#657)
1 parent d66ea82 commit 2810139

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

docs/evaluation/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
} from "@site/src/components/InstructionsWithCode";
1313
import { RegionalUrl } from "@site/src/components/RegionalUrls";
1414

15-
# Evaluation quick start
15+
# Evaluation Quick Start
1616

1717
This quick start will get you up and running with our evaluation SDK and Experiments UI.
1818

docs/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ It allows you to closely monitor and evaluate your application, so you can ship
1414
![](./static/get_started.png)
1515
</div>
1616
<div style={{ flex: 1 }}>
17-
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>Observability</h3>
17+
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>[Observability](./observability)</h3>
1818

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

21-
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>Evals</h3>
21+
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>[Evals](./evaluation)</h3>
2222

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

25-
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>Prompt Engineering</h3>
25+
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>[Prompt Engineering](./prompt_engineering/quickstarts/quickstart_ui)</h3>
2626

2727
Iterate on prompts, with automatic version control and collaboration features.
2828

sidebars.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const sidebars = {
2626
{
2727
type: "category",
2828
label: "Observability",
29+
className: "no-highlight",
2930
items: [
3031
"observability/index",
3132
{
@@ -73,6 +74,7 @@ const sidebars = {
7374
{
7475
type: "category",
7576
label: "Evaluation",
77+
className: "no-highlight",
7678
items: [
7779
"evaluation/index",
7880
{
@@ -120,10 +122,12 @@ const sidebars = {
120122
{
121123
type: "category",
122124
label: "Prompt Engineering",
125+
className: "no-highlight",
123126
items: [
124127
{
125128
type: "category",
126129
label: "Quickstarts",
130+
className: "no-highlight",
127131
collapsible: true,
128132
items: [
129133
"prompt_engineering/quickstarts/quickstart_ui",

src/css/custom.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,4 +426,12 @@ div[class^='announcementBar_'] {
426426
font-size: 20px;
427427
background-color: #d0c9feff;
428428
font-weight: bold;
429+
}
430+
431+
.no-highlight > .menu__list-item-collapsible:hover {
432+
background: var(--ifm-menu-color-background-hover) !important;
433+
}
434+
435+
.no-highlight > .menu__list-item-collapsible {
436+
background: transparent !important;
429437
}

0 commit comments

Comments
 (0)