Skip to content

Commit 4f1e1bf

Browse files
Starting changelog (#775)
1 parent 28062f4 commit 4f1e1bf

File tree

8 files changed

+46
-8
lines changed

8 files changed

+46
-8
lines changed

docs/changelog/index.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
import { RegionalUrl } from "@site/src/components/RegionalUrls";
6+
7+
# Changelog
8+
9+
What's new in LangSmith — new features, enhancements, and bugs fixed — organized by release date and release version. Looking for just the major product updates & highlights? [Check out our website feed.](https://changelog.langchain.com/?categories=cat_FvjDMlZoyaKkX)
10+
11+
## 2025‑04‑28
12+
13+
### LangSmith v0.10.31
14+
15+
#### LangSmith
16+
17+
- Directly [add example metadata](/evaluation/how_to_guides/manage_datasets_in_application#edit-example-metadata) when editing examples in the UI
18+
- Prompt previews now render when [running an experiment in the UI](/evaluation/how_to_guides/run_evaluation_from_prompt_playground) or configuring an [online evaluator](/observability/how_to_guides/online_evaluations) with f-string prompts
19+
- [Group by](/evaluation/how_to_guides/analyze_single_experiment#group-results-by-metadata) [dataset split](/evaluation/how_to_guides/manage_datasets_in_application#create-and-manage-dataset-splits) when analyzing experiment results
20+
21+
#### LangGraph Studio
22+
23+
- Improved layout when expanding [subgraphs](https://langchain-ai.github.io/langgraph/how-tos/subgraph/?h=subgraph)
24+
- Render errors and [interrupts](https://langchain-ai.github.io/langgraph/concepts/human_in_the_loop/?h=#interrupt) correctly in Studio Chat UI

docs/evaluation/how_to_guides/manage_datasets_in_application.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -141,19 +141,19 @@ you can select and unselect splits for the selected examples, or create a new sp
141141

142142
### Edit example metadata
143143

144-
You can add metadata to your examples by clicking on an example and then clicking on the "Metadata" tab in the side pane.
144+
You can add metadata to your examples by clicking on an example and then clicking "Edit" on the top righthand side of the popover.
145145
From this page, you can update/delete existing metadata, or add new metadata. You may use this to store information about
146-
your examples, such as tags or version info, which you can [then filter by when you call `list_examples` in the SDK](./manage_datasets_programmatically#list-examples-by-metadata).
146+
your examples, such as tags or version info, which you can then [group by](./analyze_single_experiment#group-results-by-metadata) when analyzing experiment results or [filter by](./manage_datasets_programmatically#list-examples-by-metadata) when you call `list_examples` in the SDK.
147147

148-
![Add Metadata](./static/add_metadata.png)
148+
![Add Metadata](./static/add_metadata.gif)
149149

150150
### Filter examples
151151

152-
You can filter examples by metadata key/value or full-text search. To filter examples, click "Filter" in the top left of the table:
152+
You can filter examples by split, metadata key/value or perform full-text search over examples. These filtering options are available to the top left of the examples table.
153+
- **Filter by split**: Select split > Select a split to filter by
154+
- **Filter by metadata**: Filters > Select "Metadata" from the dropdown > Select the metadata key and value to filter on
155+
- **Full-text search**: Filters > Select "Full Text" from the dropdown > Enter your search criteria
153156

154-
![Filter Examples](./static/filter_examples.png)
155-
156-
Next, click "Add filter" and select "Full Text" or "Metadata" from the resulting dropdown. You may add multiple filters, and only examples that satisfy all of the
157-
filters will be displayed in the table.
157+
You may add multiple filters, and only examples that satisfy all of the filters will be displayed in the table.
158158

159159
![Filters Applied to Examples](./static/filters_applied.png)
Loading
Binary file not shown.
Loading
Binary file not shown.
Loading

sidebars.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,20 @@ const sidebars = {
277277
],
278278
link: { type: "doc", id: "reference/index" },
279279
},
280+
{
281+
type: "category",
282+
label: "Changelog",
283+
collapsed: false,
284+
collapsible: false,
285+
items: [
286+
{
287+
type: "autogenerated",
288+
dirName: "reference",
289+
className: "hidden",
290+
},
291+
],
292+
link: { type: "doc", id: "changelog/index" },
293+
},
280294
],
281295
};
282296

0 commit comments

Comments
 (0)