Skip to content

Commit 8d9a35c

Browse files
authored
Merge pull request #131 from langchain-ai/remove/private-beta-hidden-flags
feat: unhide issues and trace messages commands, remove private beta labels
2 parents c8f79d5 + 9ee6840 commit 8d9a35c

2 files changed

Lines changed: 12 additions & 17 deletions

File tree

internal/cmd/issues.go

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,8 @@ var severityLabels = map[int]string{
4040
func newProjectIssuesCmd() *cobra.Command {
4141
cmd := &cobra.Command{
4242
Use: "issues",
43-
Short: "[Private Beta] Manage issues for a tracing project",
44-
Hidden: true,
45-
Long: `[Private Beta] Manage Issues Board issues for a tracing project.
46-
This feature is currently in private beta and may not be available to all users.
43+
Short: "Manage issues for a tracing project",
44+
Long: `Manage Issues Board issues for a tracing project.
4745
4846
Examples:
4947
langsmith project issues list --project my-app
@@ -69,8 +67,8 @@ func newProjectIssuesListCmd() *cobra.Command {
6967

7068
cmd := &cobra.Command{
7169
Use: "list",
72-
Short: "[Private Beta] List issues for a tracing project",
73-
Long: `[Private Beta] List forge issues associated with a tracing project.
70+
Short: "List issues for a tracing project",
71+
Long: `List forge issues associated with a tracing project.
7472
7573
Fetches issues from the Issues Board for the specified project. Results
7674
can be filtered by status (open/closed) and priority (high/medium/low).
@@ -170,8 +168,8 @@ func newProjectIssuesEventsCmd() *cobra.Command {
170168

171169
cmd := &cobra.Command{
172170
Use: "events",
173-
Short: "[Private Beta] List issue events for a tracing project",
174-
Long: `[Private Beta] List issue events for the Issues Board of a tracing project.
171+
Short: "List issue events for a tracing project",
172+
Long: `List issue events for the Issues Board of a tracing project.
175173
176174
Issue events record user and agent actions on issues: status changes, severity
177175
edits, evaluator deployments, and issue creation. The ABM agent reads these on
@@ -275,8 +273,8 @@ func newProjectIssuesUpdateCmd() *cobra.Command {
275273

276274
cmd := &cobra.Command{
277275
Use: "update <issue-id>",
278-
Short: "[Private Beta] Update an existing issue's name, description, proposed fix, evaluator, or status",
279-
Long: `[Private Beta] Update an existing issue.
276+
Short: "Update an existing issue's name, description, proposed fix, evaluator, or status",
277+
Long: `Update an existing issue.
280278
281279
To link runs as evidence, use 'langsmith project issues runs add' instead.
282280
@@ -456,9 +454,8 @@ func truncate(s string, n int) string {
456454
func newProjectIssuesRunsCmd() *cobra.Command {
457455
cmd := &cobra.Command{
458456
Use: "runs",
459-
Short: "[Private Beta] Manage linked runs for an issue",
460-
Hidden: true,
461-
Long: `[Private Beta] Link and unlink runs to/from an issue.
457+
Short: "Manage linked runs for an issue",
458+
Long: `Link and unlink runs to/from an issue.
462459
463460
Examples:
464461
langsmith project issues runs add <issue-id> --run-id <run-id> --start-time 2026-04-10T00:00:00Z

internal/cmd/message.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,8 @@ func newTraceMessagesCmd() *cobra.Command {
3838

3939
cmd := &cobra.Command{
4040
Use: "messages",
41-
Short: "[Private Beta] Get conversation messages for multiple traces (batch)",
42-
Hidden: true,
43-
Long: `[Private Beta] Get conversation messages for multiple traces in a single request.
44-
This feature is currently in private beta and may not be available to all users.
41+
Short: "Get conversation messages for multiple traces (batch)",
42+
Long: `Get conversation messages for multiple traces in a single request.
4543
4644
Queries root runs matching the given filters, then returns normalized
4745
conversation messages extracted from each trace's LLM and tool runs.

0 commit comments

Comments
 (0)