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

feat:Update OpenAPI specification for LangSmith with new endpoints and features #170

Merged
merged 1 commit into from
Jan 11, 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
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ public sealed partial class OrganizationConfig
[global::System.Text.Json.Serialization.JsonPropertyName("enable_langgraph_pricing")]
public bool? EnableLanggraphPricing { get; set; }

/// <summary>
/// Default Value: false
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("enable_thread_view_playground")]
public bool? EnableThreadViewPlayground { get; set; }

/// <summary>
/// Default Value: false
/// </summary>
Expand Down Expand Up @@ -245,6 +251,9 @@ public sealed partial class OrganizationConfig
/// <param name="enableLanggraphPricing">
/// Default Value: false
/// </param>
/// <param name="enableThreadViewPlayground">
/// Default Value: false
/// </param>
/// <param name="enableCustomExperimentNames">
/// Default Value: false
/// </param>
Expand Down Expand Up @@ -294,6 +303,7 @@ public OrganizationConfig(
bool? showPlaygroundPromptCanvas,
bool? allowCustomIframes,
bool? enableLanggraphPricing,
bool? enableThreadViewPlayground,
bool? enableCustomExperimentNames,
bool? enableOrgUsageCharts,
bool? enableSelectAllTraces,
Expand Down Expand Up @@ -324,6 +334,7 @@ public OrganizationConfig(
this.ShowPlaygroundPromptCanvas = showPlaygroundPromptCanvas;
this.AllowCustomIframes = allowCustomIframes;
this.EnableLanggraphPricing = enableLanggraphPricing;
this.EnableThreadViewPlayground = enableThreadViewPlayground;
this.EnableCustomExperimentNames = enableCustomExperimentNames;
this.EnableOrgUsageCharts = enableOrgUsageCharts;
this.EnableSelectAllTraces = enableSelectAllTraces;
Expand Down
4 changes: 4 additions & 0 deletions src/libs/LangSmith/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16874,6 +16874,10 @@ components:
title: Enable Langgraph Pricing
type: boolean
default: false
enable_thread_view_playground:
title: Enable Thread View Playground
type: boolean
default: false
enable_custom_experiment_names:
title: Enable Custom Experiment Names
type: boolean
Expand Down
Loading