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:Add tracer session management endpoints to LangSmith API spec #169

Merged
merged 1 commit into from
Jan 10, 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 @@ -164,6 +164,12 @@ public sealed partial class OrganizationConfig
[global::System.Text.Json.Serialization.JsonPropertyName("prompt_optimization")]
public bool? PromptOptimization { get; set; }

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

/// <summary>
/// Default Value: false
/// </summary>
Expand Down Expand Up @@ -257,6 +263,9 @@ public sealed partial class OrganizationConfig
/// <param name="promptOptimization">
/// Default Value: false
/// </param>
/// <param name="promptOptimizationJobsEnabled">
/// Default Value: false
/// </param>
/// <param name="enableK8sVanillaPlatform">
/// Default Value: false
/// </param>
Expand Down Expand Up @@ -291,6 +300,7 @@ public OrganizationConfig(
bool? useExactSearchForPrompts,
bool? langgraphDeployOwnCloudEnabled,
bool? promptOptimization,
bool? promptOptimizationJobsEnabled,
bool? enableK8sVanillaPlatform,
bool? enableExperimentPageV2)
{
Expand Down Expand Up @@ -320,6 +330,7 @@ public OrganizationConfig(
this.UseExactSearchForPrompts = useExactSearchForPrompts;
this.LanggraphDeployOwnCloudEnabled = langgraphDeployOwnCloudEnabled;
this.PromptOptimization = promptOptimization;
this.PromptOptimizationJobsEnabled = promptOptimizationJobsEnabled;
this.EnableK8sVanillaPlatform = enableK8sVanillaPlatform;
this.EnableExperimentPageV2 = enableExperimentPageV2;
}
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 @@ -16898,6 +16898,10 @@ components:
title: Prompt Optimization
type: boolean
default: false
prompt_optimization_jobs_enabled:
title: Prompt Optimization Jobs Enabled
type: boolean
default: false
enable_k8s_vanilla_platform:
title: Enable K8S Vanilla Platform
type: boolean
Expand Down
Loading