Skip to content

Commit

Permalink
quick start improvements (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
isahers1 authored Jan 31, 2025
1 parent d66ea82 commit 2810139
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/evaluation/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ It allows you to closely monitor and evaluate your application, so you can ship
![](./static/get_started.png)
</div>
<div style={{ flex: 1 }}>
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>Observability</h3>
<h3 style={{ color: '#1a73e8', marginTop: 0 }}>[Observability](./observability)</h3>

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

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

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

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

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

Expand Down
4 changes: 4 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const sidebars = {
{
type: "category",
label: "Observability",
className: "no-highlight",
items: [
"observability/index",
{
Expand Down Expand Up @@ -73,6 +74,7 @@ const sidebars = {
{
type: "category",
label: "Evaluation",
className: "no-highlight",
items: [
"evaluation/index",
{
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 2810139

Please sign in to comment.