Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quick start improvements #657

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
Loading