diff --git a/src/libs/LangSmith/Generated/JsonConverters.MissingMissing1.g.cs b/src/libs/LangSmith/Generated/JsonConverters.MissingMissing1.g.cs
new file mode 100644
index 00000000..133092ca
--- /dev/null
+++ b/src/libs/LangSmith/Generated/JsonConverters.MissingMissing1.g.cs
@@ -0,0 +1,49 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class MissingMissing1JsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::LangSmith.MissingMissing1 Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::LangSmith.MissingMissing1Extensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::LangSmith.MissingMissing1)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::LangSmith.MissingMissing1 value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::LangSmith.MissingMissing1Extensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/LangSmith/Generated/JsonConverters.MissingMissing1Nullable.g.cs b/src/libs/LangSmith/Generated/JsonConverters.MissingMissing1Nullable.g.cs
new file mode 100644
index 00000000..6f93478d
--- /dev/null
+++ b/src/libs/LangSmith/Generated/JsonConverters.MissingMissing1Nullable.g.cs
@@ -0,0 +1,56 @@
+#nullable enable
+
+namespace OpenApiGenerator.JsonConverters
+{
+ ///
+ public sealed class MissingMissing1NullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::LangSmith.MissingMissing1? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::LangSmith.MissingMissing1Extensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::LangSmith.MissingMissing1)numValue;
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::LangSmith.MissingMissing1? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::LangSmith.MissingMissing1Extensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs b/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs
index 9e70f49d..fab851e9 100644
--- a/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs
+++ b/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs
@@ -37,6 +37,8 @@ namespace LangSmith
typeof(global::OpenApiGenerator.JsonConverters.CustomChartTypeNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.CustomChartMetricJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.CustomChartMetricNullableJsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.MissingMissing1JsonConverter),
+ typeof(global::OpenApiGenerator.JsonConverters.MissingMissing1NullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.PaymentPlanTierJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.PaymentPlanTierNullableJsonConverter),
typeof(global::OpenApiGenerator.JsonConverters.ExampleListOrderJsonConverter),
diff --git a/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs b/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs
index a9269847..fb8dd5bf 100644
--- a/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs
+++ b/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs
@@ -425,3042 +425,3054 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::LangSmith.CustomChartSeriesFilters? Type103 { get; set; }
+ public global::System.AnyOf? Type103 { get; set; }
///
///
///
- public global::LangSmith.CustomChartMetric? Type104 { get; set; }
+ public global::LangSmith.CustomChartSeriesFilters? Type104 { get; set; }
///
///
///
- public global::System.AnyOf? Type105 { get; set; }
+ public global::LangSmith.CustomChartMetric? Type105 { get; set; }
///
///
///
- public global::LangSmith.CustomChartCreateMetadata? Type106 { get; set; }
+ public global::System.AnyOf? Type106 { get; set; }
///
///
///
- public global::LangSmith.CustomChartCreatePreview? Type107 { get; set; }
+ public global::LangSmith.CustomChartCreateMetadata? Type107 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type108 { get; set; }
+ public global::LangSmith.CustomChartCreatePreview? Type108 { get; set; }
///
///
///
- public global::LangSmith.CustomChartSeries? Type109 { get; set; }
+ public global::System.Collections.Generic.IList? Type109 { get; set; }
///
///
///
- public global::LangSmith.CustomChartPreviewRequest? Type110 { get; set; }
+ public global::LangSmith.CustomChartSeries? Type110 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsRequestBase? Type111 { get; set; }
+ public global::LangSmith.CustomChartPreviewRequest? Type111 { get; set; }
///
///
///
- public global::System.AllOf? Type112 { get; set; }
+ public global::LangSmith.CustomChartsRequestBase? Type112 { get; set; }
///
///
///
- public global::LangSmith.TimedeltaInput? Type113 { get; set; }
+ public global::System.AllOf? Type113 { get; set; }
///
///
///
- public global::LangSmith.CustomChartResponse? Type114 { get; set; }
+ public global::LangSmith.TimedeltaInput? Type114 { get; set; }
///
///
///
- public global::System.AnyOf? Type115 { get; set; }
+ public global::LangSmith.CustomChartResponse? Type115 { get; set; }
///
///
///
- public global::LangSmith.CustomChartResponseMetadata? Type116 { get; set; }
+ public global::System.AnyOf? Type116 { get; set; }
///
///
///
- public global::System.AnyOf, object>? Type117 { get; set; }
+ public global::LangSmith.CustomChartResponseMetadata? Type117 { get; set; }
///
///
///
- public global::LangSmith.CustomChartSeriesUpdate? Type118 { get; set; }
+ public global::System.AnyOf, object>? Type118 { get; set; }
///
///
///
- public global::LangSmith.CustomChartUpdate? Type119 { get; set; }
+ public global::LangSmith.CustomChartSeriesUpdate? Type119 { get; set; }
///
///
///
- public global::System.AnyOf? Type120 { get; set; }
+ public global::LangSmith.CustomChartUpdate? Type120 { get; set; }
///
///
///
- public global::LangSmith.Missing? Type121 { get; set; }
+ public global::System.AnyOf? Type121 { get; set; }
///
///
///
- public global::System.AnyOf? Type122 { get; set; }
+ public global::LangSmith.Missing? Type122 { get; set; }
///
///
///
- public global::System.AnyOf? Type123 { get; set; }
+ public global::LangSmith.MissingMissing1? Type123 { get; set; }
///
///
///
- public global::System.AnyOf? Type124 { get; set; }
+ public global::System.AnyOf? Type124 { get; set; }
///
///
///
- public global::System.AnyOf, global::LangSmith.Missing>? Type125 { get; set; }
+ public global::System.AnyOf? Type125 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type126 { get; set; }
+ public global::System.AnyOf? Type126 { get; set; }
///
///
///
- public global::System.AnyOf? Type127 { get; set; }
+ public global::System.AnyOf, global::LangSmith.Missing>? Type127 { get; set; }
///
///
///
- public global::System.AnyOf? Type128 { get; set; }
+ public global::System.Collections.Generic.IList? Type128 { get; set; }
///
///
///
- public global::LangSmith.CustomChartUpdateMetadata? Type129 { get; set; }
+ public global::System.AnyOf? Type129 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsDataPoint? Type130 { get; set; }
+ public global::System.AnyOf? Type130 { get; set; }
///
///
///
- public global::System.AnyOf? Type131 { get; set; }
+ public global::LangSmith.CustomChartUpdateMetadata? Type131 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsDataPointValue? Type132 { get; set; }
+ public global::System.AnyOf? Type132 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsRequest? Type133 { get; set; }
+ public global::LangSmith.CustomChartsDataPoint? Type133 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsResponse? Type134 { get; set; }
+ public global::System.AnyOf? Type134 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type135 { get; set; }
+ public global::LangSmith.CustomChartsDataPointValue? Type135 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsSection? Type136 { get; set; }
+ public global::LangSmith.CustomChartsRequest? Type136 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type137 { get; set; }
+ public global::LangSmith.CustomChartsResponse? Type137 { get; set; }
///
///
///
- public global::LangSmith.SingleCustomChartResponse? Type138 { get; set; }
+ public global::System.Collections.Generic.IList? Type138 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type139 { get; set; }
+ public global::LangSmith.CustomChartsSection? Type139 { get; set; }
///
///
///
- public global::System.AnyOf? Type140 { get; set; }
+ public global::System.Collections.Generic.IList? Type140 { get; set; }
///
///
///
- public global::LangSmith.SingleCustomChartResponseMetadata? Type141 { get; set; }
+ public global::LangSmith.SingleCustomChartResponse? Type141 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsSectionCreate? Type142 { get; set; }
+ public global::System.Collections.Generic.IList? Type142 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsSectionResponse? Type143 { get; set; }
+ public global::System.AnyOf? Type143 { get; set; }
///
///
///
- public global::LangSmith.CustomChartsSectionUpdate? Type144 { get; set; }
+ public global::LangSmith.SingleCustomChartResponseMetadata? Type144 { get; set; }
///
///
///
- public global::LangSmith.CustomerVisiblePlanInfo? Type145 { get; set; }
+ public global::LangSmith.CustomChartsSectionCreate? Type145 { get; set; }
///
///
///
- public global::LangSmith.PaymentPlanTier? Type146 { get; set; }
+ public global::LangSmith.CustomChartsSectionResponse? Type146 { get; set; }
///
///
///
- public global::LangSmith.Dataset? Type147 { get; set; }
+ public global::LangSmith.CustomChartsSectionUpdate? Type147 { get; set; }
///
///
///
- public global::System.AnyOf? Type148 { get; set; }
+ public global::LangSmith.CustomerVisiblePlanInfo? Type148 { get; set; }
///
///
///
- public global::System.AnyOf? Type149 { get; set; }
+ public global::LangSmith.PaymentPlanTier? Type149 { get; set; }
///
///
///
- public global::LangSmith.DatasetInputsSchemaDefinition? Type150 { get; set; }
+ public global::LangSmith.Dataset? Type150 { get; set; }
///
///
///
- public global::System.AnyOf? Type151 { get; set; }
+ public global::System.AnyOf? Type151 { get; set; }
///
///
///
- public global::LangSmith.DatasetOutputsSchemaDefinition? Type152 { get; set; }
+ public global::System.AnyOf? Type152 { get; set; }
///
///
///
- public global::LangSmith.DatasetCreate? Type153 { get; set; }
+ public global::LangSmith.DatasetInputsSchemaDefinition? Type153 { get; set; }
///
///
///
- public global::System.AnyOf? Type154 { get; set; }
+ public global::System.AnyOf? Type154 { get; set; }
///
///
///
- public global::LangSmith.DatasetCreateInputsSchemaDefinition? Type155 { get; set; }
+ public global::LangSmith.DatasetOutputsSchemaDefinition? Type155 { get; set; }
///
///
///
- public global::System.AnyOf? Type156 { get; set; }
+ public global::LangSmith.DatasetCreate? Type156 { get; set; }
///
///
///
- public global::LangSmith.DatasetCreateOutputsSchemaDefinition? Type157 { get; set; }
+ public global::System.AnyOf? Type157 { get; set; }
///
///
///
- public global::System.AnyOf? Type158 { get; set; }
+ public global::LangSmith.DatasetCreateInputsSchemaDefinition? Type158 { get; set; }
///
///
///
- public global::LangSmith.DatasetCreateExtra? Type159 { get; set; }
+ public global::System.AnyOf? Type159 { get; set; }
///
///
///
- public global::LangSmith.DatasetDiffInfo? Type160 { get; set; }
+ public global::LangSmith.DatasetCreateOutputsSchemaDefinition? Type160 { get; set; }
///
///
///
- public global::LangSmith.DatasetIndexInfo? Type161 { get; set; }
+ public global::System.AnyOf? Type161 { get; set; }
///
///
///
- public global::LangSmith.DatasetIndexRequest? Type162 { get; set; }
+ public global::LangSmith.DatasetCreateExtra? Type162 { get; set; }
///
///
///
- public global::LangSmith.DatasetPublicSchema? Type163 { get; set; }
+ public global::LangSmith.DatasetDiffInfo? Type163 { get; set; }
///
///
///
- public global::System.AnyOf? Type164 { get; set; }
+ public global::LangSmith.DatasetIndexInfo? Type164 { get; set; }
///
///
///
- public global::LangSmith.DatasetPublicSchemaInputsSchemaDefinition? Type165 { get; set; }
+ public global::LangSmith.DatasetIndexRequest? Type165 { get; set; }
///
///
///
- public global::System.AnyOf? Type166 { get; set; }
+ public global::LangSmith.DatasetPublicSchema? Type166 { get; set; }
///
///
///
- public global::LangSmith.DatasetPublicSchemaOutputsSchemaDefinition? Type167 { get; set; }
+ public global::System.AnyOf? Type167 { get; set; }
///
///
///
- public global::LangSmith.DatasetSchemaForUpdate? Type168 { get; set; }
+ public global::LangSmith.DatasetPublicSchemaInputsSchemaDefinition? Type168 { get; set; }
///
///
///
- public global::System.AnyOf? Type169 { get; set; }
+ public global::System.AnyOf? Type169 { get; set; }
///
///
///
- public global::LangSmith.DatasetSchemaForUpdateInputsSchemaDefinition? Type170 { get; set; }
+ public global::LangSmith.DatasetPublicSchemaOutputsSchemaDefinition? Type170 { get; set; }
///
///
///
- public global::System.AnyOf? Type171 { get; set; }
+ public global::LangSmith.DatasetSchemaForUpdate? Type171 { get; set; }
///
///
///
- public global::LangSmith.DatasetSchemaForUpdateOutputsSchemaDefinition? Type172 { get; set; }
+ public global::System.AnyOf? Type172 { get; set; }
///
///
///
- public global::LangSmith.DatasetShareSchema? Type173 { get; set; }
+ public global::LangSmith.DatasetSchemaForUpdateInputsSchemaDefinition? Type173 { get; set; }
///
///
///
- public global::LangSmith.DatasetUpdate? Type174 { get; set; }
+ public global::System.AnyOf? Type174 { get; set; }
///
///
///
- public global::System.AnyOf? Type175 { get; set; }
+ public global::LangSmith.DatasetSchemaForUpdateOutputsSchemaDefinition? Type175 { get; set; }
///
///
///
- public global::LangSmith.DatasetUpdateInputsSchemaDefinition? Type176 { get; set; }
+ public global::LangSmith.DatasetShareSchema? Type176 { get; set; }
///
///
///
- public global::System.AnyOf? Type177 { get; set; }
+ public global::LangSmith.DatasetUpdate? Type177 { get; set; }
///
///
///
- public global::LangSmith.DatasetUpdateOutputsSchemaDefinition? Type178 { get; set; }
+ public global::System.AnyOf? Type178 { get; set; }
///
///
///
- public global::System.AnyOf? Type179 { get; set; }
+ public global::LangSmith.DatasetUpdateInputsSchemaDefinition? Type179 { get; set; }
///
///
///
- public global::LangSmith.DatasetUpdatePatchExamples? Type180 { get; set; }
+ public global::System.AnyOf? Type180 { get; set; }
///
///
///
- public global::LangSmith.DatasetVersion? Type181 { get; set; }
+ public global::LangSmith.DatasetUpdateOutputsSchemaDefinition? Type181 { get; set; }
///
///
///
- public global::LangSmith.EvaluatorStructuredOutput? Type182 { get; set; }
+ public global::System.AnyOf? Type182 { get; set; }
///
///
///
- public global::System.AnyOf>, object>? Type183 { get; set; }
+ public global::LangSmith.DatasetUpdatePatchExamples? Type183 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type184 { get; set; }
+ public global::LangSmith.DatasetVersion? Type184 { get; set; }
///
///
///
- public global::System.AnyOf? Type185 { get; set; }
+ public global::LangSmith.EvaluatorStructuredOutput? Type185 { get; set; }
///
///
///
- public global::LangSmith.EvaluatorStructuredOutputSchema? Type186 { get; set; }
+ public global::System.AnyOf>, object>? Type186 { get; set; }
///
///
///
- public global::System.AnyOf? Type187 { get; set; }
+ public global::System.Collections.Generic.IList>? Type187 { get; set; }
///
///
///
- public global::LangSmith.EvaluatorStructuredOutputVariableMapping? Type188 { get; set; }
+ public global::System.AnyOf? Type188 { get; set; }
///
///
///
- public global::LangSmith.EvaluatorStructuredOutputModel? Type189 { get; set; }
+ public global::LangSmith.EvaluatorStructuredOutputSchema? Type189 { get; set; }
///
///
///
- public global::LangSmith.EvaluatorTopLevel? Type190 { get; set; }
+ public global::System.AnyOf? Type190 { get; set; }
///
///
///
- public global::LangSmith.Example? Type191 { get; set; }
+ public global::LangSmith.EvaluatorStructuredOutputVariableMapping? Type191 { get; set; }
///
///
///
- public global::System.AnyOf? Type192 { get; set; }
+ public global::LangSmith.EvaluatorStructuredOutputModel? Type192 { get; set; }
///
///
///
- public global::LangSmith.ExampleOutputs? Type193 { get; set; }
+ public global::LangSmith.EvaluatorTopLevel? Type193 { get; set; }
///
///
///
- public global::System.AnyOf? Type194 { get; set; }
+ public global::LangSmith.Example? Type194 { get; set; }
///
///
///
- public global::LangSmith.ExampleMetadata? Type195 { get; set; }
+ public global::System.AnyOf? Type195 { get; set; }
///
///
///
- public global::LangSmith.ExampleInputs? Type196 { get; set; }
+ public global::LangSmith.ExampleOutputs? Type196 { get; set; }
///
///
///
- public global::LangSmith.ExampleBulkCreate? Type197 { get; set; }
+ public global::System.AnyOf? Type197 { get; set; }
///
///
///
- public global::System.AnyOf? Type198 { get; set; }
+ public global::LangSmith.ExampleMetadata? Type198 { get; set; }
///
///
///
- public global::LangSmith.ExampleBulkCreateOutputs? Type199 { get; set; }
+ public global::LangSmith.ExampleInputs? Type199 { get; set; }
///
///
///
- public global::System.AnyOf? Type200 { get; set; }
+ public global::LangSmith.ExampleBulkCreate? Type200 { get; set; }
///
///
///
- public global::LangSmith.ExampleBulkCreateMetadata? Type201 { get; set; }
+ public global::System.AnyOf? Type201 { get; set; }
///
///
///
- public global::System.AnyOf? Type202 { get; set; }
+ public global::LangSmith.ExampleBulkCreateOutputs? Type202 { get; set; }
///
///
///
- public global::LangSmith.ExampleBulkCreateInputs? Type203 { get; set; }
+ public global::System.AnyOf? Type203 { get; set; }
///
///
///
- public global::System.AnyOf, string?, object>? Type204 { get; set; }
+ public global::LangSmith.ExampleBulkCreateMetadata? Type204 { get; set; }
///
///
///
- public global::LangSmith.ExampleCreate? Type205 { get; set; }
+ public global::System.AnyOf? Type205 { get; set; }
///
///
///
- public global::System.AnyOf? Type206 { get; set; }
+ public global::LangSmith.ExampleBulkCreateInputs? Type206 { get; set; }
///
///
///
- public global::LangSmith.ExampleCreateOutputs? Type207 { get; set; }
+ public global::System.AnyOf, string?, object>? Type207 { get; set; }
///
///
///
- public global::System.AnyOf? Type208 { get; set; }
+ public global::LangSmith.ExampleCreate? Type208 { get; set; }
///
///
///
- public global::LangSmith.ExampleCreateMetadata? Type209 { get; set; }
+ public global::System.AnyOf? Type209 { get; set; }
///
///
///
- public global::System.AnyOf? Type210 { get; set; }
+ public global::LangSmith.ExampleCreateOutputs? Type210 { get; set; }
///
///
///
- public global::LangSmith.ExampleCreateInputs? Type211 { get; set; }
+ public global::System.AnyOf? Type211 { get; set; }
///
///
///
- public global::LangSmith.ExampleListOrder? Type212 { get; set; }
+ public global::LangSmith.ExampleCreateMetadata? Type212 { get; set; }
///
///
///
- public global::LangSmith.ExampleSelect? Type213 { get; set; }
+ public global::System.AnyOf? Type213 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdate? Type214 { get; set; }
+ public global::LangSmith.ExampleCreateInputs? Type214 { get; set; }
///
///
///
- public global::System.AnyOf? Type215 { get; set; }
+ public global::LangSmith.ExampleListOrder? Type215 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdateInputs? Type216 { get; set; }
+ public global::LangSmith.ExampleSelect? Type216 { get; set; }
///
///
///
- public global::System.AnyOf? Type217 { get; set; }
+ public global::LangSmith.ExampleUpdate? Type217 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdateOutputs? Type218 { get; set; }
+ public global::System.AnyOf? Type218 { get; set; }
///
///
///
- public global::System.AnyOf? Type219 { get; set; }
+ public global::LangSmith.ExampleUpdateInputs? Type219 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdateMetadata? Type220 { get; set; }
+ public global::System.AnyOf? Type220 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdateWithID? Type221 { get; set; }
+ public global::LangSmith.ExampleUpdateOutputs? Type221 { get; set; }
///
///
///
- public global::System.AnyOf? Type222 { get; set; }
+ public global::System.AnyOf? Type222 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdateWithIDInputs? Type223 { get; set; }
+ public global::LangSmith.ExampleUpdateMetadata? Type223 { get; set; }
///
///
///
- public global::System.AnyOf? Type224 { get; set; }
+ public global::LangSmith.ExampleUpdateWithID? Type224 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdateWithIDOutputs? Type225 { get; set; }
+ public global::System.AnyOf? Type225 { get; set; }
///
///
///
- public global::System.AnyOf? Type226 { get; set; }
+ public global::LangSmith.ExampleUpdateWithIDInputs? Type226 { get; set; }
///
///
///
- public global::LangSmith.ExampleUpdateWithIDMetadata? Type227 { get; set; }
+ public global::System.AnyOf? Type227 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRuns? Type228 { get; set; }
+ public global::LangSmith.ExampleUpdateWithIDOutputs? Type228 { get; set; }
///
///
///
- public global::System.AnyOf? Type229 { get; set; }
+ public global::System.AnyOf? Type229 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRunsOutputs? Type230 { get; set; }
+ public global::LangSmith.ExampleUpdateWithIDMetadata? Type230 { get; set; }
///
///
///
- public global::System.AnyOf? Type231 { get; set; }
+ public global::LangSmith.ExampleWithRuns? Type231 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRunsMetadata? Type232 { get; set; }
+ public global::System.AnyOf? Type232 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRunsInputs? Type233 { get; set; }
+ public global::LangSmith.ExampleWithRunsOutputs? Type233 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type234 { get; set; }
+ public global::System.AnyOf? Type234 { get; set; }
///
///
///
- public global::LangSmith.RunSchema? Type235 { get; set; }
+ public global::LangSmith.ExampleWithRunsMetadata? Type235 { get; set; }
///
///
///
- public global::System.AnyOf? Type236 { get; set; }
+ public global::LangSmith.ExampleWithRunsInputs? Type236 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaInputs? Type237 { get; set; }
+ public global::System.Collections.Generic.IList? Type237 { get; set; }
///
///
///
- public global::System.AnyOf? Type238 { get; set; }
+ public global::LangSmith.RunSchema? Type238 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaExtra? Type239 { get; set; }
+ public global::System.AnyOf? Type239 { get; set; }
///
///
///
- public global::System.AnyOf? Type240 { get; set; }
+ public global::LangSmith.RunSchemaInputs? Type240 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaSerialized? Type241 { get; set; }
+ public global::System.AnyOf? Type241 { get; set; }
///
///
///
- public global::System.AnyOf? Type242 { get; set; }
+ public global::LangSmith.RunSchemaExtra? Type242 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaOutputs? Type243 { get; set; }
+ public global::System.AnyOf? Type243 { get; set; }
///
///
///
- public global::System.AnyOf, object>? Type244 { get; set; }
+ public global::LangSmith.RunSchemaSerialized? Type244 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type245 { get; set; }
+ public global::System.AnyOf? Type245 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaEventsVariant1Item? Type246 { get; set; }
+ public global::LangSmith.RunSchemaOutputs? Type246 { get; set; }
///
///
///
- public global::System.AnyOf? Type247 { get; set; }
+ public global::System.AnyOf, object>? Type247 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaInputsS3Urls? Type248 { get; set; }
+ public global::System.Collections.Generic.IList? Type248 { get; set; }
///
///
///
- public global::System.AnyOf? Type249 { get; set; }
+ public global::LangSmith.RunSchemaEventsVariant1Item? Type249 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaOutputsS3Urls? Type250 { get; set; }
+ public global::System.AnyOf? Type250 { get; set; }
///
///
///
- public global::System.AnyOf? Type251 { get; set; }
+ public global::LangSmith.RunSchemaInputsS3Urls? Type251 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaS3Urls? Type252 { get; set; }
+ public global::System.AnyOf? Type252 { get; set; }
///
///
///
- public global::System.AnyOf? Type253 { get; set; }
+ public global::LangSmith.RunSchemaOutputsS3Urls? Type253 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaFeedbackStats? Type254 { get; set; }
+ public global::System.AnyOf? Type254 { get; set; }
///
///
///
- public global::System.AnyOf? Type255 { get; set; }
+ public global::LangSmith.RunSchemaS3Urls? Type255 { get; set; }
///
///
///
- public global::LangSmith.TraceTier3? Type256 { get; set; }
+ public global::System.AnyOf? Type256 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRunsCH? Type257 { get; set; }
+ public global::LangSmith.RunSchemaFeedbackStats? Type257 { get; set; }
///
///
///
- public global::System.AnyOf? Type258 { get; set; }
+ public global::System.AnyOf? Type258 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRunsCHOutputs? Type259 { get; set; }
+ public global::LangSmith.TraceTier3? Type259 { get; set; }
///
///
///
- public global::System.AnyOf? Type260 { get; set; }
+ public global::LangSmith.ExampleWithRunsCH? Type260 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRunsCHMetadata? Type261 { get; set; }
+ public global::System.AnyOf? Type261 { get; set; }
///
///
///
- public global::LangSmith.ExampleWithRunsCHInputs? Type262 { get; set; }
+ public global::LangSmith.ExampleWithRunsCHOutputs? Type262 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type263 { get; set; }
+ public global::System.AnyOf? Type263 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonView? Type264 { get; set; }
+ public global::LangSmith.ExampleWithRunsCHMetadata? Type264 { get; set; }
///
///
///
- public global::System.AnyOf? Type265 { get; set; }
+ public global::LangSmith.ExampleWithRunsCHInputs? Type265 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewInputs? Type266 { get; set; }
+ public global::System.Collections.Generic.IList? Type266 { get; set; }
///
///
///
- public global::System.AnyOf? Type267 { get; set; }
+ public global::LangSmith.RunSchemaComparisonView? Type267 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewExtra? Type268 { get; set; }
+ public global::System.AnyOf? Type268 { get; set; }
///
///
///
- public global::System.AnyOf? Type269 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewInputs? Type269 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewSerialized? Type270 { get; set; }
+ public global::System.AnyOf? Type270 { get; set; }
///
///
///
- public global::System.AnyOf? Type271 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewExtra? Type271 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewOutputs? Type272 { get; set; }
+ public global::System.AnyOf? Type272 { get; set; }
///
///
///
- public global::System.AnyOf, object>? Type273 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewSerialized? Type273 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type274 { get; set; }
+ public global::System.AnyOf? Type274 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewEventsVariant1Item? Type275 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewOutputs? Type275 { get; set; }
///
///
///
- public global::System.AnyOf? Type276 { get; set; }
+ public global::System.AnyOf, object>? Type276 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewInputsS3Urls? Type277 { get; set; }
+ public global::System.Collections.Generic.IList? Type277 { get; set; }
///
///
///
- public global::System.AnyOf? Type278 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewEventsVariant1Item? Type278 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewOutputsS3Urls? Type279 { get; set; }
+ public global::System.AnyOf? Type279 { get; set; }
///
///
///
- public global::System.AnyOf? Type280 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewInputsS3Urls? Type280 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewS3Urls? Type281 { get; set; }
+ public global::System.AnyOf? Type281 { get; set; }
///
///
///
- public global::System.AnyOf? Type282 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewOutputsS3Urls? Type282 { get; set; }
///
///
///
- public global::LangSmith.RunSchemaComparisonViewFeedbackStats? Type283 { get; set; }
+ public global::System.AnyOf? Type283 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultRow? Type284 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewS3Urls? Type284 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultRowInputs? Type285 { get; set; }
+ public global::System.AnyOf? Type285 { get; set; }
///
///
///
- public global::System.AnyOf? Type286 { get; set; }
+ public global::LangSmith.RunSchemaComparisonViewFeedbackStats? Type286 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultRowExpectedOutputs? Type287 { get; set; }
+ public global::LangSmith.ExperimentResultRow? Type287 { get; set; }
///
///
///
- public global::System.AnyOf? Type288 { get; set; }
+ public global::LangSmith.ExperimentResultRowInputs? Type288 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultRowActualOutputs? Type289 { get; set; }
+ public global::System.AnyOf? Type289 { get; set; }
///
///
///
- public global::System.AnyOf, object>? Type290 { get; set; }
+ public global::LangSmith.ExperimentResultRowExpectedOutputs? Type290 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type291 { get; set; }
+ public global::System.AnyOf? Type291 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateCoreSchema? Type292 { get; set; }
+ public global::LangSmith.ExperimentResultRowActualOutputs? Type292 { get; set; }
///
///
///
- public global::System.AnyOf? Type293 { get; set; }
+ public global::System.AnyOf, object>? Type293 { get; set; }
///
///
///
- public global::System.AnyOf? Type294 { get; set; }
+ public global::System.Collections.Generic.IList? Type294 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateCoreSchemaValue? Type295 { get; set; }
+ public global::LangSmith.FeedbackCreateCoreSchema? Type295 { get; set; }
///
///
///
- public global::System.AnyOf? Type296 { get; set; }
+ public global::System.AnyOf? Type296 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateCoreSchemaCorrection? Type297 { get; set; }
+ public global::System.AnyOf? Type297 { get; set; }
///
///
///
- public global::System.AnyOf? Type298 { get; set; }
+ public global::LangSmith.FeedbackCreateCoreSchemaValue? Type298 { get; set; }
///
///
///
- public global::LangSmith.ModelFeedbackSource? Type299 { get; set; }
+ public global::System.AnyOf? Type299 { get; set; }
///
///
///
- public global::System.AnyOf? Type300 { get; set; }
+ public global::LangSmith.FeedbackCreateCoreSchemaCorrection? Type300 { get; set; }
///
///
///
- public global::LangSmith.ModelFeedbackSourceMetadata? Type301 { get; set; }
+ public global::System.AnyOf? Type301 { get; set; }
///
///
///
- public global::System.AnyOf? Type302 { get; set; }
+ public global::LangSmith.ModelFeedbackSource? Type302 { get; set; }
///
///
///
- public global::System.AnyOf? Type303 { get; set; }
+ public global::System.AnyOf? Type303 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultRowRunMetadata? Type304 { get; set; }
+ public global::LangSmith.ModelFeedbackSourceMetadata? Type304 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultsUpload? Type305 { get; set; }
+ public global::System.AnyOf? Type305 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type306 { get; set; }
+ public global::System.AnyOf? Type306 { get; set; }
///
///
///
- public global::System.AnyOf? Type307 { get; set; }
+ public global::LangSmith.ExperimentResultRowRunMetadata? Type307 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultsUploadExperimentMetadata? Type308 { get; set; }
+ public global::LangSmith.ExperimentResultsUpload? Type308 { get; set; }
///
///
///
- public global::LangSmith.ExperimentResultsUploadResult? Type309 { get; set; }
+ public global::System.Collections.Generic.IList? Type309 { get; set; }
///
///
///
- public global::LangSmith.TracerSession? Type310 { get; set; }
+ public global::System.AnyOf? Type310 { get; set; }
///
///
///
- public global::System.AnyOf? Type311 { get; set; }
+ public global::LangSmith.ExperimentResultsUploadExperimentMetadata? Type311 { get; set; }
///
///
///
- public global::LangSmith.TracerSessionExtra? Type312 { get; set; }
+ public global::LangSmith.ExperimentResultsUploadResult? Type312 { get; set; }
///
///
///
- public global::System.AnyOf? Type313 { get; set; }
+ public global::LangSmith.TracerSession? Type313 { get; set; }
///
///
///
- public global::LangSmith.TracerSessionFeedbackStats? Type314 { get; set; }
+ public global::System.AnyOf? Type314 { get; set; }
///
///
///
- public global::System.AnyOf? Type315 { get; set; }
+ public global::LangSmith.TracerSessionExtra? Type315 { get; set; }
///
///
///
- public global::LangSmith.TracerSessionSessionFeedbackStats? Type316 { get; set; }
+ public global::System.AnyOf? Type316 { get; set; }
///
///
///
- public global::System.AnyOf, object>? Type317 { get; set; }
+ public global::LangSmith.TracerSessionFeedbackStats? Type317 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type318 { get; set; }
+ public global::System.AnyOf? Type318 { get; set; }
///
///
///
- public global::LangSmith.TracerSessionRunFacetsVariant1Item? Type319 { get; set; }
+ public global::LangSmith.TracerSessionSessionFeedbackStats? Type319 { get; set; }
///
///
///
- public global::LangSmith.FeedbackConfigSchema? Type320 { get; set; }
+ public global::System.AnyOf, object>? Type320 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateSchema? Type321 { get; set; }
+ public global::System.Collections.Generic.IList? Type321 { get; set; }
///
///
///
- public global::System.AnyOf? Type322 { get; set; }
+ public global::LangSmith.TracerSessionRunFacetsVariant1Item? Type322 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateSchemaValue? Type323 { get; set; }
+ public global::LangSmith.FeedbackConfigSchema? Type323 { get; set; }
///
///
///
- public global::System.AnyOf? Type324 { get; set; }
+ public global::LangSmith.FeedbackCreateSchema? Type324 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateSchemaCorrection? Type325 { get; set; }
+ public global::System.AnyOf? Type325 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateWithTokenExtendedSchema? Type326 { get; set; }
+ public global::LangSmith.FeedbackCreateSchemaValue? Type326 { get; set; }
///
///
///
- public global::System.AnyOf? Type327 { get; set; }
+ public global::System.AnyOf? Type327 { get; set; }
///
///
///
- public global::System.AnyOf? Type328 { get; set; }
+ public global::LangSmith.FeedbackCreateSchemaCorrection? Type328 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateWithTokenExtendedSchemaCorrection? Type329 { get; set; }
+ public global::LangSmith.FeedbackCreateWithTokenExtendedSchema? Type329 { get; set; }
///
///
///
- public global::System.AnyOf? Type330 { get; set; }
+ public global::System.AnyOf? Type330 { get; set; }
///
///
///
- public global::LangSmith.FeedbackCreateWithTokenExtendedSchemaMetadata? Type331 { get; set; }
+ public global::System.AnyOf? Type331 { get; set; }
///
///
///
- public global::LangSmith.FeedbackDelta? Type332 { get; set; }
+ public global::LangSmith.FeedbackCreateWithTokenExtendedSchemaCorrection? Type332 { get; set; }
///
///
///
- public global::LangSmith.FeedbackIngestTokenCreateSchema? Type333 { get; set; }
+ public global::System.AnyOf? Type333 { get; set; }
///
///
///
- public global::System.AnyOf? Type334 { get; set; }
+ public global::LangSmith.FeedbackCreateWithTokenExtendedSchemaMetadata? Type334 { get; set; }
///
///
///
- public global::LangSmith.FeedbackIngestTokenSchema? Type335 { get; set; }
+ public global::LangSmith.FeedbackDelta? Type335 { get; set; }
///
///
///
- public global::LangSmith.FeedbackLevel? Type336 { get; set; }
+ public global::LangSmith.FeedbackIngestTokenCreateSchema? Type336 { get; set; }
///
///
///
- public global::LangSmith.FeedbackSchema? Type337 { get; set; }
+ public global::System.AnyOf? Type337 { get; set; }
///
///
///
- public global::System.AnyOf? Type338 { get; set; }
+ public global::LangSmith.FeedbackIngestTokenSchema? Type338 { get; set; }
///
///
///
- public global::LangSmith.FeedbackSchemaValue? Type339 { get; set; }
+ public global::LangSmith.FeedbackLevel? Type339 { get; set; }
///
///
///
- public global::System.AnyOf? Type340 { get; set; }
+ public global::LangSmith.FeedbackSchema? Type340 { get; set; }
///
///
///
- public global::LangSmith.FeedbackSchemaCorrection? Type341 { get; set; }
+ public global::System.AnyOf? Type341 { get; set; }
///
///
///
- public global::System.AnyOf? Type342 { get; set; }
+ public global::LangSmith.FeedbackSchemaValue? Type342 { get; set; }
///
///
///
- public global::LangSmith.FeedbackSource4? Type343 { get; set; }
+ public global::System.AnyOf? Type343 { get; set; }
///
///
///
- public global::System.AnyOf? Type344 { get; set; }
+ public global::LangSmith.FeedbackSchemaCorrection? Type344 { get; set; }
///
///
///
- public global::LangSmith.FeedbackSourceMetadata? Type345 { get; set; }
+ public global::System.AnyOf? Type345 { get; set; }
///
///
///
- public global::LangSmith.FeedbackUpdateSchema? Type346 { get; set; }
+ public global::LangSmith.FeedbackSource4? Type346 { get; set; }
///
///
///
- public global::System.AnyOf? Type347 { get; set; }
+ public global::System.AnyOf? Type347 { get; set; }
///
///
///
- public global::LangSmith.FeedbackUpdateSchemaValue? Type348 { get; set; }
+ public global::LangSmith.FeedbackSourceMetadata? Type348 { get; set; }
///
///
///
- public global::System.AnyOf? Type349 { get; set; }
+ public global::LangSmith.FeedbackUpdateSchema? Type349 { get; set; }
///
///
///
- public global::LangSmith.FeedbackUpdateSchemaCorrection? Type350 { get; set; }
+ public global::System.AnyOf? Type350 { get; set; }
///
///
///
- public global::LangSmith.FilterQueryParamsForRunSchema? Type351 { get; set; }
+ public global::LangSmith.FeedbackUpdateSchemaValue? Type351 { get; set; }
///
///
///
- public global::LangSmith.FilterView? Type352 { get; set; }
+ public global::System.AnyOf? Type352 { get; set; }
///
///
///
- public global::LangSmith.FilterViewCreate? Type353 { get; set; }
+ public global::LangSmith.FeedbackUpdateSchemaCorrection? Type353 { get; set; }
///
///
///
- public global::LangSmith.FilterViewUpdate? Type354 { get; set; }
+ public global::LangSmith.FilterQueryParamsForRunSchema? Type354 { get; set; }
///
///
///
- public global::LangSmith.ForkRepoRequest? Type355 { get; set; }
+ public global::LangSmith.FilterView? Type355 { get; set; }
///
///
///
- public global::LangSmith.GenerateSyntheticExamplesBody? Type356 { get; set; }
+ public global::LangSmith.FilterViewCreate? Type356 { get; set; }
///
///
///
- public global::LangSmith.GetRepoResponse? Type357 { get; set; }
+ public global::LangSmith.FilterViewUpdate? Type357 { get; set; }
///
///
///
- public global::LangSmith.HTTPValidationError? Type358 { get; set; }
+ public global::LangSmith.ForkRepoRequest? Type358 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type359 { get; set; }
+ public global::LangSmith.GenerateSyntheticExamplesBody? Type359 { get; set; }
///
///
///
- public global::LangSmith.ValidationError? Type360 { get; set; }
+ public global::LangSmith.GetRepoResponse? Type360 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type361 { get; set; }
+ public global::LangSmith.HTTPValidationError? Type361 { get; set; }
///
///
///
- public global::System.AnyOf? Type362 { get; set; }
+ public global::System.Collections.Generic.IList? Type362 { get; set; }
///
///
///
- public global::LangSmith.Identity? Type363 { get; set; }
+ public global::LangSmith.ValidationError? Type363 { get; set; }
///
///
///
- public global::System.AllOf? Type364 { get; set; }
+ public global::System.Collections.Generic.IList>? Type364 { get; set; }
///
///
///
- public global::LangSmith.IdentityAnnotationQueueRunStatusCreateSchema? Type365 { get; set; }
+ public global::System.AnyOf? Type365 { get; set; }
///
///
///
- public global::LangSmith.IdentityCreate? Type366 { get; set; }
+ public global::LangSmith.Identity? Type366 { get; set; }
///
///
///
- public global::LangSmith.IdentityPatch? Type367 { get; set; }
+ public global::System.AllOf? Type367 { get; set; }
///
///
///
- public global::LangSmith.InfoGetResponse? Type368 { get; set; }
+ public global::LangSmith.IdentityAnnotationQueueRunStatusCreateSchema? Type368 { get; set; }
///
///
///
- public global::LangSmith.InfoGetResponseInstanceFlags? Type369 { get; set; }
+ public global::LangSmith.IdentityCreate? Type369 { get; set; }
///
///
///
- public global::LangSmith.InvokePromptPayload? Type370 { get; set; }
+ public global::LangSmith.IdentityPatch? Type370 { get; set; }
///
///
///
- public global::LangSmith.InvokePromptPayloadInputs? Type371 { get; set; }
+ public global::LangSmith.InfoGetResponse? Type371 { get; set; }
///
///
///
- public global::LangSmith.LikeRepoRequest? Type372 { get; set; }
+ public global::LangSmith.InfoGetResponseInstanceFlags? Type372 { get; set; }
///
///
///
- public global::LangSmith.LikeRepoResponse? Type373 { get; set; }
+ public global::LangSmith.InvokePromptPayload? Type373 { get; set; }
///
///
///
- public global::LangSmith.ListCommentsResponse? Type374 { get; set; }
+ public global::LangSmith.InvokePromptPayloadInputs? Type374 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type375 { get; set; }
+ public global::LangSmith.LikeRepoRequest? Type375 { get; set; }
///
///
///
- public global::LangSmith.ListCommitsResponse? Type376 { get; set; }
+ public global::LangSmith.LikeRepoResponse? Type376 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type377 { get; set; }
+ public global::LangSmith.ListCommentsResponse? Type377 { get; set; }
///
///
///
- public global::LangSmith.ListPublicDatasetRunsResponse? Type378 { get; set; }
+ public global::System.Collections.Generic.IList? Type378 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type379 { get; set; }
+ public global::LangSmith.ListCommitsResponse? Type379 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchema? Type380 { get; set; }
+ public global::System.Collections.Generic.IList? Type380 { get; set; }
///
///
///
- public global::System.AnyOf? Type381 { get; set; }
+ public global::LangSmith.ListPublicDatasetRunsResponse? Type381 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaInputs? Type382 { get; set; }
+ public global::System.Collections.Generic.IList? Type382 { get; set; }
///
///
///
- public global::System.AnyOf? Type383 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchema? Type383 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaExtra? Type384 { get; set; }
+ public global::System.AnyOf? Type384 { get; set; }
///
///
///
- public global::System.AnyOf? Type385 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaInputs? Type385 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaSerialized? Type386 { get; set; }
+ public global::System.AnyOf? Type386 { get; set; }
///
///
///
- public global::System.AnyOf? Type387 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaExtra? Type387 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaOutputs? Type388 { get; set; }
+ public global::System.AnyOf? Type388 { get; set; }
///
///
///
- public global::System.AnyOf, object>? Type389 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaSerialized? Type389 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type390 { get; set; }
+ public global::System.AnyOf? Type390 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaEventsVariant1Item? Type391 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaOutputs? Type391 { get; set; }
///
///
///
- public global::System.AnyOf? Type392 { get; set; }
+ public global::System.AnyOf, object>? Type392 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaInputsS3Urls? Type393 { get; set; }
+ public global::System.Collections.Generic.IList? Type393 { get; set; }
///
///
///
- public global::System.AnyOf? Type394 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaEventsVariant1Item? Type394 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaOutputsS3Urls? Type395 { get; set; }
+ public global::System.AnyOf? Type395 { get; set; }
///
///
///
- public global::System.AnyOf? Type396 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaInputsS3Urls? Type396 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaS3Urls? Type397 { get; set; }
+ public global::System.AnyOf? Type397 { get; set; }
///
///
///
- public global::System.AnyOf? Type398 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaOutputsS3Urls? Type398 { get; set; }
///
///
///
- public global::LangSmith.RunPublicDatasetSchemaFeedbackStats? Type399 { get; set; }
+ public global::System.AnyOf? Type399 { get; set; }
///
///
///
- public global::LangSmith.ListPublicDatasetRunsResponseCursors? Type400 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaS3Urls? Type400 { get; set; }
///
///
///
- public global::LangSmith.ListPublicRunsResponse? Type401 { get; set; }
+ public global::System.AnyOf? Type401 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type402 { get; set; }
+ public global::LangSmith.RunPublicDatasetSchemaFeedbackStats? Type402 { get; set; }
///
///
///
- public global::LangSmith.RunPublicSchema? Type403 { get; set; }
+ public global::LangSmith.ListPublicDatasetRunsResponseCursors? Type403 { get; set; }
///
///
///
- public global::System.AnyOf? Type404 { get; set; }
+ public global::LangSmith.ListPublicRunsResponse? Type404 { get; set; }
///