diff --git a/src/libs/LangSmith/Generated/AllOf.1.g.cs b/src/libs/LangSmith/Generated/AllOf.1.g.cs
deleted file mode 100644
index 851fe234..00000000
--- a/src/libs/LangSmith/Generated/AllOf.1.g.cs
+++ /dev/null
@@ -1,114 +0,0 @@
-using System.Linq;
-
-#nullable enable
-
-namespace LangSmith
-{
- ///
- ///
- ///
- public readonly partial struct AllOf : global::System.IEquatable>
- {
- ///
- ///
- ///
-#if NET6_0_OR_GREATER
- public T1? Value1 { get; init; }
-#else
- public T1? Value1 { get; }
-#endif
-
- ///
- ///
- ///
-#if NET6_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.MemberNotNullWhen(true, nameof(Value1))]
-#endif
- public bool IsValue1 => Value1 != null;
-
- ///
- ///
- ///
- public static implicit operator AllOf(T1 value) => new AllOf(value);
-
- ///
- ///
- ///
- public static implicit operator T1?(AllOf @this) => @this.Value1;
-
- ///
- ///
- ///
- public AllOf(T1? value)
- {
- Value1 = value;
- }
-
- ///
- ///
- ///
- public object? Object =>
- Value1 as object
- ;
-
- ///
- ///
- ///
- public bool Validate()
- {
- return IsValue1;
- }
-
- ///
- ///
- ///
- public override int GetHashCode()
- {
- var fields = new object?[]
- {
- Value1,
- typeof(T1),
- };
- const int offset = unchecked((int)2166136261);
- const int prime = 16777619;
- static int HashCodeAggregator(int hashCode, object? value) => value == null
- ? (hashCode ^ 0) * prime
- : (hashCode ^ value.GetHashCode()) * prime;
- return fields.Aggregate(offset, HashCodeAggregator);
- }
-
- ///
- ///
- ///
- public bool Equals(AllOf other)
- {
- return
- global::System.Collections.Generic.EqualityComparer.Default.Equals(Value1, other.Value1)
- ;
- }
-
- ///
- ///
- ///
- public static bool operator ==(AllOf obj1, AllOf obj2)
- {
- return global::System.Collections.Generic.EqualityComparer>.Default.Equals(obj1, obj2);
- }
-
- ///
- ///
- ///
- public static bool operator !=(AllOf obj1, AllOf obj2)
- {
- return !(obj1 == obj2);
- }
-
- ///
- ///
- ///
- public override bool Equals(object? obj)
- {
- return obj is AllOf o && Equals(o);
- }
- }
-}
diff --git a/src/libs/LangSmith/Generated/JsonConverters.AllOf1.g.cs b/src/libs/LangSmith/Generated/JsonConverters.AllOf1.g.cs
deleted file mode 100644
index b162c3a9..00000000
--- a/src/libs/LangSmith/Generated/JsonConverters.AllOf1.g.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-#nullable enable
-
-namespace LangSmith.JsonConverters
-{
- ///
- public class AllOfJsonConverter : global::System.Text.Json.Serialization.JsonConverter>
- {
- ///
- public override global::LangSmith.AllOf Read(
- ref global::System.Text.Json.Utf8JsonReader reader,
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- options = options ?? throw new global::System.ArgumentNullException(nameof(options));
- var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set.");
-
- var
- readerCopy = reader;
- T1? value1 = default;
- try
- {
- var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
- throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}");
- value1 = global::System.Text.Json.JsonSerializer.Deserialize(ref readerCopy, typeInfo);
- }
- catch (global::System.Text.Json.JsonException)
- {
- }
-
- var result = new global::LangSmith.AllOf(
- value1
- );
-
- if (value1 != null)
- {
- var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
- throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}");
- _ = global::System.Text.Json.JsonSerializer.Deserialize(ref reader, typeInfo);
- }
-
- return result;
- }
-
- ///
- public override void Write(
- global::System.Text.Json.Utf8JsonWriter writer,
- global::LangSmith.AllOf value,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- options = options ?? throw new global::System.ArgumentNullException(nameof(options));
- var typeInfoResolver = options.TypeInfoResolver ?? throw new global::System.InvalidOperationException("TypeInfoResolver is not set.");
-
- if (value.IsValue1)
- {
- var typeInfo = typeInfoResolver.GetTypeInfo(typeof(T1), options) as global::System.Text.Json.Serialization.Metadata.JsonTypeInfo ??
- throw new global::System.InvalidOperationException($"Cannot get type info for {typeof(T1).Name}");
- global::System.Text.Json.JsonSerializer.Serialize(writer, value.Value1, typeInfo);
- }
- }
- }
-}
\ No newline at end of file
diff --git a/src/libs/LangSmith/Generated/JsonConverters.AllOfFactory1.g.cs b/src/libs/LangSmith/Generated/JsonConverters.AllOfFactory1.g.cs
deleted file mode 100644
index 9d972468..00000000
--- a/src/libs/LangSmith/Generated/JsonConverters.AllOfFactory1.g.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-#nullable enable
-
-namespace LangSmith.JsonConverters
-{
- ///
- public sealed class AllOfJsonConverterFactory1 : global::System.Text.Json.Serialization.JsonConverterFactory
- {
- ///
- public override bool CanConvert(global::System.Type? typeToConvert)
- {
- return typeToConvert is { IsGenericType: true } && typeToConvert.GetGenericTypeDefinition() == typeof(global::LangSmith.AllOf<>);
- }
-
- ///
- public override global::System.Text.Json.Serialization.JsonConverter CreateConverter(
- global::System.Type typeToConvert,
- global::System.Text.Json.JsonSerializerOptions options)
- {
- typeToConvert = typeToConvert ?? throw new global::System.ArgumentNullException(nameof(typeToConvert));
-
- return (global::System.Text.Json.Serialization.JsonConverter)global::System.Activator.CreateInstance(
- typeof(AllOfJsonConverter<>).MakeGenericType(typeToConvert.GenericTypeArguments))!;
- }
- }
-}
diff --git a/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs b/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs
index 2f6ac566..0d9ccc20 100644
--- a/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs
+++ b/src/libs/LangSmith/Generated/JsonSerializerContext.g.cs
@@ -112,7 +112,6 @@ namespace LangSmith
typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory5),
typeof(global::LangSmith.JsonConverters.OneOfJsonConverterFactory2),
typeof(global::LangSmith.JsonConverters.OneOfJsonConverterFactory3),
- typeof(global::LangSmith.JsonConverters.AllOfJsonConverterFactory1),
})]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LangSmith.JsonSerializerContextTypes))]
diff --git a/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs b/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs
index 8e39fe2f..a4d28c39 100644
--- a/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs
+++ b/src/libs/LangSmith/Generated/JsonSerializerContextTypes.g.cs
@@ -3161,614 +3161,594 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::LangSmith.AllOf? Type787 { get; set; }
+ public global::System.Collections.Generic.IList? Type787 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type788 { get; set; }
+ public global::System.Collections.Generic.IList? Type788 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type789 { get; set; }
+ public global::LangSmith.AnyOf>? Type789 { get; set; }
///
///
///
- public global::LangSmith.AnyOf>? Type790 { get; set; }
+ public global::System.Collections.Generic.IList? Type790 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type791 { get; set; }
+ public global::System.Collections.Generic.IList? Type791 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type792 { get; set; }
+ public global::LangSmith.AnyOf? Type792 { get; set; }
///
///
///
- public global::LangSmith.AllOf? Type793 { get; set; }
+ public global::System.Collections.Generic.IList? Type793 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type794 { get; set; }
+ public global::LangSmith.AnyOf, global::LangSmith.DataType?, object>? Type794 { get; set; }
///
///
///
- public global::LangSmith.AllOf? Type795 { get; set; }
+ public global::System.Collections.Generic.IList? Type795 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type796 { get; set; }
+ public global::LangSmith.AnyOf? Type796 { get; set; }
///
///
///
- public global::LangSmith.AnyOf, global::LangSmith.DataType?, object>? Type797 { get; set; }
+ public global::LangSmith.ListRulesApiV1RunsRulesGetType2? Type797 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type798 { get; set; }
+ public global::LangSmith.AnyOf, object>? Type798 { get; set; }
///
///
///
- public global::LangSmith.AllOf? Type799 { get; set; }
+ public global::System.Collections.Generic.IList? Type799 { get; set; }
///
///
///
- public global::LangSmith.AllOf? Type800 { get; set; }
+ public global::LangSmith.AnyOf? Type800 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type801 { get; set; }
+ public global::LangSmith.AnyOf? Type801 { get; set; }
///
///
///
- public global::LangSmith.ListRulesApiV1RunsRulesGetType2? Type802 { get; set; }
+ public global::LangSmith.ListReposApiV1ReposGetIsArchived2? Type802 { get; set; }
///
///
///
- public global::LangSmith.AnyOf, object>? Type803 { get; set; }
+ public global::LangSmith.AnyOf? Type803 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type804 { get; set; }
+ public global::LangSmith.ListReposApiV1ReposGetIsPublic2? Type804 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type805 { get; set; }
+ public global::LangSmith.AnyOf? Type805 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type806 { get; set; }
+ public global::LangSmith.ListReposApiV1ReposGetSortDirectionVariant1? Type806 { get; set; }
///
///
///
- public global::LangSmith.ListReposApiV1ReposGetIsArchived2? Type807 { get; set; }
+ public global::LangSmith.ListReposApiV1ReposGetSortDirectionVariant2? Type807 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type808 { get; set; }
+ public global::LangSmith.AnyOf? Type808 { get; set; }
///
///
///
- public global::LangSmith.ListReposApiV1ReposGetIsPublic2? Type809 { get; set; }
+ public global::LangSmith.ListRepoTagsApiV1ReposTagsGetIsArchived2? Type809 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type810 { get; set; }
+ public global::LangSmith.AnyOf? Type810 { get; set; }
///
///
///
- public global::LangSmith.ListReposApiV1ReposGetSortDirectionVariant1? Type811 { get; set; }
+ public global::LangSmith.ListRepoTagsApiV1ReposTagsGetIsPublic2? Type811 { get; set; }
///
///
///
- public global::LangSmith.ListReposApiV1ReposGetSortDirectionVariant2? Type812 { get; set; }
+ public global::LangSmith.DeleteTracerSessionApiV1SessionsSessionIdDeleteResponse? Type812 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type813 { get; set; }
+ public global::System.Collections.Generic.IList? Type813 { get; set; }
///
///
///
- public global::LangSmith.ListRepoTagsApiV1ReposTagsGetIsArchived2? Type814 { get; set; }
+ public global::LangSmith.DeleteTracerSessionsApiV1SessionsDeleteResponse? Type814 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type815 { get; set; }
+ public global::System.Collections.Generic.IList? Type815 { get; set; }
///
///
///
- public global::LangSmith.ListRepoTagsApiV1ReposTagsGetIsPublic2? Type816 { get; set; }
+ public global::LangSmith.DeleteFilterViewApiV1SessionsSessionIdViewsViewIdDeleteResponse? Type816 { get; set; }
///
///
///
- public global::LangSmith.DeleteTracerSessionApiV1SessionsSessionIdDeleteResponse? Type817 { get; set; }
+ public global::System.Collections.Generic.IList? Type817 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type818 { get; set; }
+ public global::LangSmith.OnPaymentMethodCreatedApiV1OrgsCurrentPaymentMethodPostResponse? Type818 { get; set; }
///
///
///
- public global::LangSmith.DeleteTracerSessionsApiV1SessionsDeleteResponse? Type819 { get; set; }
+ public global::LangSmith.SetCompanyInfoApiV1OrgsCurrentBusinessInfoPostResponse? Type819 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type820 { get; set; }
+ public global::LangSmith.ChangePaymentPlanApiV1OrgsCurrentPlanPostResponse? Type820 { get; set; }
///
///
///
- public global::LangSmith.DeleteFilterViewApiV1SessionsSessionIdViewsViewIdDeleteResponse? Type821 { get; set; }
+ public global::System.Collections.Generic.IList? Type821 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type822 { get; set; }
+ public global::System.Collections.Generic.IList? Type822 { get; set; }
///
///
///
- public global::LangSmith.OnPaymentMethodCreatedApiV1OrgsCurrentPaymentMethodPostResponse? Type823 { get; set; }
+ public global::System.Collections.Generic.IList? Type823 { get; set; }
///
///
///
- public global::LangSmith.SetCompanyInfoApiV1OrgsCurrentBusinessInfoPostResponse? Type824 { get; set; }
+ public global::LangSmith.DeleteCurrentOrgPendingMemberApiV1OrgsCurrentMembersIdentityIdPendingDeleteResponse? Type824 { get; set; }
///
///
///
- public global::LangSmith.ChangePaymentPlanApiV1OrgsCurrentPlanPostResponse? Type825 { get; set; }
+ public global::LangSmith.DeletePendingOrganizationInviteApiV1OrgsPendingOrganizationIdDeleteResponse? Type825 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type826 { get; set; }
+ public global::LangSmith.RemoveMemberFromCurrentOrgApiV1OrgsCurrentMembersIdentityIdDeleteResponse? Type826 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type827 { get; set; }
+ public global::LangSmith.UpdateCurrentOrgMemberApiV1OrgsCurrentMembersIdentityIdPatchResponse? Type827 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type828 { get; set; }
+ public global::LangSmith.UpdateCurrentUserApiV1OrgsMembersBasicPatchResponse? Type828 { get; set; }
///
///
///
- public global::LangSmith.DeleteCurrentOrgPendingMemberApiV1OrgsCurrentMembersIdentityIdPendingDeleteResponse? Type829 { get; set; }
+ public global::System.Collections.Generic.IList? Type829 { get; set; }
///
///
///
- public global::LangSmith.DeletePendingOrganizationInviteApiV1OrgsPendingOrganizationIdDeleteResponse? Type830 { get; set; }
+ public global::System.Collections.Generic.IList? Type830 { get; set; }
///
///
///
- public global::LangSmith.RemoveMemberFromCurrentOrgApiV1OrgsCurrentMembersIdentityIdDeleteResponse? Type831 { get; set; }
+ public global::LangSmith.UpdateAllowedLoginMethodsApiV1OrgsCurrentLoginMethodsPatchResponse? Type831 { get; set; }
///
///
///
- public global::LangSmith.UpdateCurrentOrgMemberApiV1OrgsCurrentMembersIdentityIdPatchResponse? Type832 { get; set; }
+ public global::System.Collections.Generic.IList? Type832 { get; set; }
///
///
///
- public global::LangSmith.UpdateCurrentUserApiV1OrgsMembersBasicPatchResponse? Type833 { get; set; }
+ public global::LangSmith.SendSsoEmailConfirmationApiV1SsoEmailVerificationSendPostResponse? Type833 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type834 { get; set; }
+ public global::LangSmith.ConfirmSsoUserEmailApiV1SsoEmailVerificationConfirmPostResponse? Type834 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type835 { get; set; }
+ public global::System.Collections.Generic.IList? Type835 { get; set; }
///
///
///
- public global::LangSmith.UpdateAllowedLoginMethodsApiV1OrgsCurrentLoginMethodsPatchResponse? Type836 { get; set; }
+ public global::System.Collections.Generic.IList? Type836 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type837 { get; set; }
+ public global::LangSmith.UpdateExampleApiV1ExamplesExampleIdPatchResponse? Type837 { get; set; }
///
///
///
- public global::LangSmith.SendSsoEmailConfirmationApiV1SsoEmailVerificationSendPostResponse? Type838 { get; set; }
+ public global::LangSmith.DeleteExampleApiV1ExamplesExampleIdDeleteResponse? Type838 { get; set; }
///
///
///
- public global::LangSmith.ConfirmSsoUserEmailApiV1SsoEmailVerificationConfirmPostResponse? Type839 { get; set; }
+ public global::System.Collections.Generic.IList? Type839 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type840 { get; set; }
+ public global::LangSmith.DeleteExamplesApiV1ExamplesDeleteResponse? Type840 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type841 { get; set; }
+ public global::LangSmith.UpdateExamplesApiV1ExamplesBulkPatchResponse? Type841 { get; set; }
///
///
///
- public global::LangSmith.UpdateExampleApiV1ExamplesExampleIdPatchResponse? Type842 { get; set; }
+ public global::LangSmith.DeleteDatasetApiV1DatasetsDatasetIdDeleteResponse? Type842 { get; set; }
///
///
///
- public global::LangSmith.DeleteExampleApiV1ExamplesExampleIdDeleteResponse? Type843 { get; set; }
+ public global::System.Collections.Generic.IList? Type843 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type844 { get; set; }
+ public global::System.Collections.Generic.IList? Type844 { get; set; }
///
///
///
- public global::LangSmith.DeleteExamplesApiV1ExamplesDeleteResponse? Type845 { get; set; }
+ public global::LangSmith.DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetResponse? Type845 { get; set; }
///
///
///
- public global::LangSmith.UpdateExamplesApiV1ExamplesBulkPatchResponse? Type846 { get; set; }
+ public global::LangSmith.DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetResponse? Type846 { get; set; }
///
///
///
- public global::LangSmith.DeleteDatasetApiV1DatasetsDatasetIdDeleteResponse? Type847 { get; set; }
+ public global::LangSmith.DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetResponse? Type847 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type848 { get; set; }
+ public global::LangSmith.AnyOf, global::System.Collections.Generic.IList>? Type848 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type849 { get; set; }
+ public global::System.Collections.Generic.IList? Type849 { get; set; }
///
///
///
- public global::LangSmith.DownloadDatasetOpenaiApiV1DatasetsDatasetIdOpenaiGetResponse? Type850 { get; set; }
+ public global::System.Collections.Generic.IList? Type850 { get; set; }
///
///
///
- public global::LangSmith.DownloadDatasetOpenaiFtApiV1DatasetsDatasetIdOpenaiFtGetResponse? Type851 { get; set; }
+ public global::LangSmith.AnyOf? Type851 { get; set; }
///
///
///
- public global::LangSmith.DownloadDatasetCsvApiV1DatasetsDatasetIdCsvGetResponse? Type852 { get; set; }
+ public global::LangSmith.UnshareDatasetApiV1DatasetsDatasetIdShareDeleteResponse? Type852 { get; set; }
///
///
///
- public global::LangSmith.AnyOf, global::System.Collections.Generic.IList>? Type853 { get; set; }
+ public global::System.Collections.Generic.IList? Type853 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type854 { get; set; }
+ public global::LangSmith.DeleteComparativeExperimentApiV1DatasetsComparativeComparativeExperimentIdDeleteResponse? Type854 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type855 { get; set; }
+ public global::LangSmith.IndexApiV1DatasetsDatasetIdIndexPostResponse? Type855 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type856 { get; set; }
+ public global::LangSmith.RemoveIndexApiV1DatasetsDatasetIdIndexDeleteResponse? Type856 { get; set; }
///
///
///
- public global::LangSmith.UnshareDatasetApiV1DatasetsDatasetIdShareDeleteResponse? Type857 { get; set; }
+ public global::LangSmith.GenerateApiV1DatasetsDatasetIdGeneratePostResponse? Type857 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type858 { get; set; }
+ public global::System.Collections.Generic.IList? Type858 { get; set; }
///
///
///
- public global::LangSmith.DeleteComparativeExperimentApiV1DatasetsComparativeComparativeExperimentIdDeleteResponse? Type859 { get; set; }
+ public global::LangSmith.DeleteRuleApiV1RunsRulesRuleIdDeleteResponse? Type859 { get; set; }
///
///
///
- public global::LangSmith.IndexApiV1DatasetsDatasetIdIndexPostResponse? Type860 { get; set; }
+ public global::System.Collections.Generic.IList? Type860 { get; set; }
///
///
///
- public global::LangSmith.RemoveIndexApiV1DatasetsDatasetIdIndexDeleteResponse? Type861 { get; set; }
+ public global::LangSmith.TriggerRulesApiV1RunsRulesTriggerPostResponse? Type861 { get; set; }
///
///
///
- public global::LangSmith.GenerateApiV1DatasetsDatasetIdGeneratePostResponse? Type862 { get; set; }
+ public global::LangSmith.UpdateRunApiV1RunsRunIdPatchResponse? Type862 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type863 { get; set; }
+ public global::LangSmith.AnyOf? Type863 { get; set; }
///
///
///
- public global::LangSmith.DeleteRuleApiV1RunsRulesRuleIdDeleteResponse? Type864 { get; set; }
+ public global::LangSmith.UnshareRunApiV1RunsRunIdShareDeleteResponse? Type864 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type865 { get; set; }
+ public global::LangSmith.CreateRunApiV1RunsPostResponse? Type865 { get; set; }
///
///
///
- public global::LangSmith.TriggerRulesApiV1RunsRulesTriggerPostResponse? Type866 { get; set; }
+ public global::LangSmith.BatchIngestRunsApiV1RunsBatchPostResponse? Type866 { get; set; }
///
///
///
- public global::LangSmith.UpdateRunApiV1RunsRunIdPatchResponse? Type867 { get; set; }
+ public global::LangSmith.GroupRunsApiV1RunsGroupPostResponse? Type867 { get; set; }
///
///
///
- public global::LangSmith.AnyOf? Type868 { get; set; }
+ public global::LangSmith.DeleteFeedbackApiV1FeedbackFeedbackIdDeleteResponse? Type868 { get; set; }
///
///
///
- public global::LangSmith.UnshareRunApiV1RunsRunIdShareDeleteResponse? Type869 { get; set; }
+ public global::System.Collections.Generic.IList? Type869 { get; set; }
///
///
///
- public global::LangSmith.CreateRunApiV1RunsPostResponse? Type870 { get; set; }
+ public global::LangSmith.AnyOf>? Type870 { get; set; }
///
///
///
- public global::LangSmith.BatchIngestRunsApiV1RunsBatchPostResponse? Type871 { get; set; }
+ public global::System.Collections.Generic.IList? Type871 { get; set; }
///
///
///
- public global::LangSmith.GroupRunsApiV1RunsGroupPostResponse? Type872 { get; set; }
+ public global::LangSmith.CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetResponse? Type872 { get; set; }
///
///
///
- public global::LangSmith.DeleteFeedbackApiV1FeedbackFeedbackIdDeleteResponse? Type873 { get; set; }
+ public global::LangSmith.CreateFeedbackWithTokenPostApiV1FeedbackTokensTokenPostResponse? Type873 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type874 { get; set; }
+ public global::LangSmith.AnyOf, global::System.Collections.Generic.IList>? Type874 { get; set; }
///
///
///
- public global::LangSmith.AnyOf>? Type875 { get; set; }
+ public global::System.Collections.Generic.IList? Type875 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type876 { get; set; }
+ public global::System.Collections.Generic.IList? Type876 { get; set; }
///
///
///
- public global::LangSmith.CreateFeedbackWithTokenGetApiV1FeedbackTokensTokenGetResponse? Type877 { get; set; }
+ public global::System.Collections.Generic.IList? Type877 { get; set; }
///
///
///
- public global::LangSmith.CreateFeedbackWithTokenPostApiV1FeedbackTokensTokenPostResponse? Type878 { get; set; }
+ public global::LangSmith.DeleteAnnotationQueueApiV1AnnotationQueuesQueueIdDeleteResponse? Type878 { get; set; }
///
///
///
- public global::LangSmith.AnyOf, global::System.Collections.Generic.IList>? Type879 { get; set; }
+ public global::LangSmith.UpdateAnnotationQueueApiV1AnnotationQueuesQueueIdPatchResponse? Type879 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type880 { get; set; }
+ public global::System.Collections.Generic.IList? Type880 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type881 { get; set; }
+ public global::System.Collections.Generic.IList? Type881 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type882 { get; set; }
+ public global::LangSmith.UpdateRunInAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdPatchResponse? Type882 { get; set; }
///
///
///
- public global::LangSmith.DeleteAnnotationQueueApiV1AnnotationQueuesQueueIdDeleteResponse? Type883 { get; set; }
+ public global::LangSmith.DeleteRunFromAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdDeleteResponse? Type883 { get; set; }
///
///
///
- public global::LangSmith.UpdateAnnotationQueueApiV1AnnotationQueuesQueueIdPatchResponse? Type884 { get; set; }
+ public global::LangSmith.CreateIdentityAnnotationQueueRunStatusApiV1AnnotationQueuesStatusAnnotationQueueRunIdPostResponse? Type884 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type885 { get; set; }
+ public global::LangSmith.ExecuteApiV1AceExecutePostResponse? Type885 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type886 { get; set; }
+ public global::System.Collections.Generic.IList? Type886 { get; set; }
///
///
///
- public global::LangSmith.UpdateRunInAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdPatchResponse? Type887 { get; set; }
+ public global::System.Collections.Generic.IList? Type887 { get; set; }
///
///
///
- public global::LangSmith.DeleteRunFromAnnotationQueueApiV1AnnotationQueuesQueueIdRunsQueueRunIdDeleteResponse? Type888 { get; set; }
+ public global::LangSmith.DeletePendingTenantInviteApiV1TenantsPendingIdDeleteResponse? Type888 { get; set; }
///
///
///
- public global::LangSmith.CreateIdentityAnnotationQueueRunStatusApiV1AnnotationQueuesStatusAnnotationQueueRunIdPostResponse? Type889 { get; set; }
+ public global::LangSmith.ClaimPendingTenantInviteApiV1TenantsPendingTenantIdClaimPostResponse? Type889 { get; set; }
///
///
///
- public global::LangSmith.ExecuteApiV1AceExecutePostResponse? Type890 { get; set; }
+ public global::LangSmith.BulkUnshareEntitiesApiV1TenantsCurrentSharedDeleteResponse? Type890 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type891 { get; set; }
+ public global::LangSmith.DeleteCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdDeleteResponse? Type891 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type892 { get; set; }
+ public global::LangSmith.PatchCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdPatchResponse? Type892 { get; set; }
///
///
///
- public global::LangSmith.DeletePendingTenantInviteApiV1TenantsPendingIdDeleteResponse? Type893 { get; set; }
+ public global::LangSmith.DeleteCurrentTenantPendingMemberApiV1TenantsCurrentMembersIdentityIdPendingDeleteResponse? Type893 { get; set; }
///
///
///
- public global::LangSmith.ClaimPendingTenantInviteApiV1TenantsPendingTenantIdClaimPostResponse? Type894 { get; set; }
+ public global::System.Collections.Generic.IList? Type894 { get; set; }
///
///
///
- public global::LangSmith.BulkUnshareEntitiesApiV1TenantsCurrentSharedDeleteResponse? Type895 { get; set; }
+ public global::LangSmith.UpsertCurrentTenantSecretsApiV1TenantsCurrentSecretsPostResponse? Type895 { get; set; }
///
///
///
- public global::LangSmith.DeleteCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdDeleteResponse? Type896 { get; set; }
+ public global::System.Collections.Generic.IList? Type896 { get; set; }
///
///
///
- public global::LangSmith.PatchCurrentTenantMemberApiV1TenantsCurrentMembersIdentityIdPatchResponse? Type897 { get; set; }
+ public global::LangSmith.ReadModelPriceMapApiV1ModelPriceMapGetResponse? Type897 { get; set; }
///
///
///
- public global::LangSmith.DeleteCurrentTenantPendingMemberApiV1TenantsCurrentMembersIdentityIdPendingDeleteResponse? Type898 { get; set; }
+ public global::LangSmith.CreateNewModelPriceApiV1ModelPriceMapPostResponse? Type898 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type899 { get; set; }
+ public global::LangSmith.UpdateModelPriceApiV1ModelPriceMapIdPutResponse? Type899 { get; set; }
///
///
///
- public global::LangSmith.UpsertCurrentTenantSecretsApiV1TenantsCurrentSecretsPostResponse? Type900 { get; set; }
+ public global::LangSmith.DeleteModelPriceApiV1ModelPriceMapIdDeleteResponse? Type900 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type901 { get; set; }
+ public global::System.Collections.Generic.IList? Type901 { get; set; }
///
///
///
- public global::LangSmith.ReadModelPriceMapApiV1ModelPriceMapGetResponse? Type902 { get; set; }
+ public global::LangSmith.DeleteUsageLimitApiV1UsageLimitsUsageLimitIdDeleteResponse? Type902 { get; set; }
///
///
///
- public global::LangSmith.CreateNewModelPriceApiV1ModelPriceMapPostResponse? Type903 { get; set; }
+ public global::LangSmith.InvokePromptApiV1PromptsInvokePromptPostResponse? Type903 { get; set; }
///
///
///
- public global::LangSmith.UpdateModelPriceApiV1ModelPriceMapIdPutResponse? Type904 { get; set; }
+ public global::LangSmith.DeletePendingWorkspaceInviteApiV1WorkspacesPendingIdDeleteResponse? Type904 { get; set; }
///
///
///
- public global::LangSmith.DeleteModelPriceApiV1ModelPriceMapIdDeleteResponse? Type905 { get; set; }
+ public global::LangSmith.ClaimPendingWorkspaceInviteApiV1WorkspacesPendingWorkspaceIdClaimPostResponse? Type905 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type906 { get; set; }
+ public global::LangSmith.BulkUnshareEntitiesApiV1WorkspacesCurrentSharedDeleteResponse? Type906 { get; set; }
///
///
///
- public global::LangSmith.DeleteUsageLimitApiV1UsageLimitsUsageLimitIdDeleteResponse? Type907 { get; set; }
+ public global::LangSmith.DeleteCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdDeleteResponse? Type907 { get; set; }
///
///
///
- public global::LangSmith.InvokePromptApiV1PromptsInvokePromptPostResponse? Type908 { get; set; }
+ public global::LangSmith.PatchCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdPatchResponse? Type908 { get; set; }
///
///
///
- public global::LangSmith.DeletePendingWorkspaceInviteApiV1WorkspacesPendingIdDeleteResponse? Type909 { get; set; }
+ public global::LangSmith.DeleteCurrentWorkspacePendingMemberApiV1WorkspacesCurrentMembersIdentityIdPendingDeleteResponse? Type909 { get; set; }
///
///
///
- public global::LangSmith.ClaimPendingWorkspaceInviteApiV1WorkspacesPendingWorkspaceIdClaimPostResponse? Type910 { get; set; }
+ public global::LangSmith.UpsertCurrentWorkspaceSecretsApiV1WorkspacesCurrentSecretsPostResponse? Type910 { get; set; }
///
///
///
- public global::LangSmith.BulkUnshareEntitiesApiV1WorkspacesCurrentSharedDeleteResponse? Type911 { get; set; }
+ public global::System.Collections.Generic.IList? Type911 { get; set; }
///
///
///
- public global::LangSmith.DeleteCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdDeleteResponse? Type912 { get; set; }
+ public global::LangSmith.DeleteTagKeyApiV1WorkspacesCurrentTagKeysTagKeyIdDeleteResponse? Type912 { get; set; }
///
///
///
- public global::LangSmith.PatchCurrentWorkspaceMemberApiV1WorkspacesCurrentMembersIdentityIdPatchResponse? Type913 { get; set; }
+ public global::LangSmith.DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteResponse? Type913 { get; set; }
///
///
///
- public global::LangSmith.DeleteCurrentWorkspacePendingMemberApiV1WorkspacesCurrentMembersIdentityIdPendingDeleteResponse? Type914 { get; set; }
+ public global::System.Collections.Generic.IList? Type914 { get; set; }
///
///
///
- public global::LangSmith.UpsertCurrentWorkspaceSecretsApiV1WorkspacesCurrentSecretsPostResponse? Type915 { get; set; }
+ public global::LangSmith.DeleteTaggingApiV1WorkspacesCurrentTaggingsTaggingIdDeleteResponse? Type915 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type916 { get; set; }
+ public global::System.Collections.Generic.IList? Type916 { get; set; }
///
///
///
- public global::LangSmith.DeleteTagKeyApiV1WorkspacesCurrentTagKeysTagKeyIdDeleteResponse? Type917 { get; set; }
+ public global::System.Collections.Generic.IList? Type917 { get; set; }
///
///
///
- public global::LangSmith.DeleteTagValueApiV1WorkspacesCurrentTagKeysTagKeyIdTagValuesTagValueIdDeleteResponse? Type918 { get; set; }
+ public global::System.Collections.Generic.IList? Type918 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type919 { get; set; }
+ public global::LangSmith.DeletePlaygroundSettingsApiV1PlaygroundSettingsPlaygroundSettingsIdDeleteResponse? Type919 { get; set; }
///
///
///
- public global::LangSmith.DeleteTaggingApiV1WorkspacesCurrentTaggingsTaggingIdDeleteResponse? Type920 { get; set; }
+ public global::System.Collections.Generic.IList? Type920 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type921 { get; set; }
+ public global::System.Collections.Generic.IList? Type921 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type922 { get; set; }
+ public global::LangSmith.DeleteChartApiV1ChartsChartIdDeleteResponse? Type922 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type923 { get; set; }
+ public global::LangSmith.DeleteSectionApiV1ChartsSectionSectionIdDeleteResponse? Type923 { get; set; }
///
///
///
- public global::LangSmith.DeletePlaygroundSettingsApiV1PlaygroundSettingsPlaygroundSettingsIdDeleteResponse? Type924 { get; set; }
+ public global::LangSmith.InvokeHandlerApiV1PlaygroundInvokePostResponse? Type924 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type925 { get; set; }
+ public global::LangSmith.BatchHandlerApiV1PlaygroundBatchPostResponse? Type925 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type926 { get; set; }
+ public global::LangSmith.DatasetHandlerApiV1PlaygroundDatasetPostResponse? Type926 { get; set; }
///
///
///
- public global::LangSmith.DeleteChartApiV1ChartsChartIdDeleteResponse? Type927 { get; set; }
+ public global::LangSmith.StreamHandlerApiV1PlaygroundStreamPostResponse? Type927 { get; set; }
///
///
///
- public global::LangSmith.DeleteSectionApiV1ChartsSectionSectionIdDeleteResponse? Type928 { get; set; }
+ public global::LangSmith.StreamDatasetHandlerApiV1PlaygroundStreamDatasetPostResponse? Type928 { get; set; }
///
///
///
- public global::LangSmith.InvokeHandlerApiV1PlaygroundInvokePostResponse? Type929 { get; set; }
+ public global::LangSmith.OkApiV1OkGetResponse? Type929 { get; set; }
///
///
///
- public global::LangSmith.BatchHandlerApiV1PlaygroundBatchPostResponse? Type930 { get; set; }
+ public global::LangSmith.DeleteRepoApiV1ReposOwnerRepoDeleteResponse? Type930 { get; set; }
///
///
///
- public global::LangSmith.DatasetHandlerApiV1PlaygroundDatasetPostResponse? Type931 { get; set; }
+ public global::LangSmith.CreateEventApiV1EventsPostResponse? Type931 { get; set; }
///
///
///
- public global::LangSmith.StreamHandlerApiV1PlaygroundStreamPostResponse? Type932 { get; set; }
+ public global::LangSmith.CreateCommentApiV1CommentsOwnerRepoPostResponse? Type932 { get; set; }
///
///
///
- public global::LangSmith.StreamDatasetHandlerApiV1PlaygroundStreamDatasetPostResponse? Type933 { get; set; }
+ public global::LangSmith.LikeCommentApiV1CommentsOwnerRepoParentCommentIdLikePostResponse? Type933 { get; set; }
///
///
///
- public global::LangSmith.OkApiV1OkGetResponse? Type934 { get; set; }
- ///
- ///
- ///
- public global::LangSmith.DeleteRepoApiV1ReposOwnerRepoDeleteResponse? Type935 { get; set; }
- ///
- ///
- ///
- public global::LangSmith.CreateEventApiV1EventsPostResponse? Type936 { get; set; }
- ///
- ///
- ///
- public global::LangSmith.CreateCommentApiV1CommentsOwnerRepoPostResponse? Type937 { get; set; }
- ///
- ///
- ///
- public global::LangSmith.LikeCommentApiV1CommentsOwnerRepoParentCommentIdLikePostResponse? Type938 { get; set; }
- ///
- ///
- ///
- public global::LangSmith.UnlikeCommentApiV1CommentsOwnerRepoParentCommentIdLikeDeleteResponse? Type939 { get; set; }
+ public global::LangSmith.UnlikeCommentApiV1CommentsOwnerRepoParentCommentIdLikeDeleteResponse? Type934 { get; set; }
}
}
\ No newline at end of file
diff --git a/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GenerateApiKey.g.cs b/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GenerateApiKey.g.cs
index e357172f..b6066d1a 100644
--- a/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GenerateApiKey.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GenerateApiKey.g.cs
@@ -7,11 +7,11 @@ public partial class ApiKeyClient
{
partial void PrepareGenerateApiKeyArguments(
global::System.Net.Http.HttpClient httpClient,
- global::LangSmith.AllOf request);
+ global::LangSmith.APIKeyCreateRequest request);
partial void PrepareGenerateApiKeyRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
- global::LangSmith.AllOf request);
+ global::LangSmith.APIKeyCreateRequest request);
partial void ProcessGenerateApiKeyResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
@@ -29,9 +29,11 @@ partial void ProcessGenerateApiKeyResponseContent(
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task GenerateApiKeyAsync(
- global::LangSmith.AllOf request,
+ global::LangSmith.APIKeyCreateRequest request,
global::System.Threading.CancellationToken cancellationToken = default)
{
+ request = request ?? throw new global::System.ArgumentNullException(nameof(request));
+
PrepareArguments(
client: _httpClient);
PrepareGenerateApiKeyArguments(
@@ -101,13 +103,23 @@ partial void ProcessGenerateApiKeyResponseContent(
/// Generate Api Key
/// Generate an api key for the user
///
+ ///
+ /// Default Value: Default API key
+ ///
+ ///
+ /// Default Value: false
+ ///
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task GenerateApiKeyAsync(
+ string? description = "Default API key",
+ bool? readOnly = false,
global::System.Threading.CancellationToken cancellationToken = default)
{
- var request = new global::LangSmith.AllOf
+ var request = new global::LangSmith.APIKeyCreateRequest
{
+ Description = description,
+ ReadOnly = readOnly,
};
return await GenerateApiKeyAsync(
diff --git a/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GeneratePersonalAccessToken.g.cs b/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GeneratePersonalAccessToken.g.cs
index 3e2e6f97..6e90e09b 100644
--- a/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GeneratePersonalAccessToken.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.ApiKeyClient.GeneratePersonalAccessToken.g.cs
@@ -7,11 +7,11 @@ public partial class ApiKeyClient
{
partial void PrepareGeneratePersonalAccessTokenArguments(
global::System.Net.Http.HttpClient httpClient,
- global::LangSmith.AllOf request);
+ global::LangSmith.APIKeyCreateRequest request);
partial void PrepareGeneratePersonalAccessTokenRequest(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpRequestMessage httpRequestMessage,
- global::LangSmith.AllOf request);
+ global::LangSmith.APIKeyCreateRequest request);
partial void ProcessGeneratePersonalAccessTokenResponse(
global::System.Net.Http.HttpClient httpClient,
global::System.Net.Http.HttpResponseMessage httpResponseMessage);
@@ -29,9 +29,11 @@ partial void ProcessGeneratePersonalAccessTokenResponseContent(
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync(
- global::LangSmith.AllOf request,
+ global::LangSmith.APIKeyCreateRequest request,
global::System.Threading.CancellationToken cancellationToken = default)
{
+ request = request ?? throw new global::System.ArgumentNullException(nameof(request));
+
PrepareArguments(
client: _httpClient);
PrepareGeneratePersonalAccessTokenArguments(
@@ -101,13 +103,23 @@ partial void ProcessGeneratePersonalAccessTokenResponseContent(
/// Generate Personal Access Token
/// Generate a Personal Access Token the user
///
+ ///
+ /// Default Value: Default API key
+ ///
+ ///
+ /// Default Value: false
+ ///
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync(
+ string? description = "Default API key",
+ bool? readOnly = false,
global::System.Threading.CancellationToken cancellationToken = default)
{
- var request = new global::LangSmith.AllOf
+ var request = new global::LangSmith.APIKeyCreateRequest
{
+ Description = description,
+ ReadOnly = readOnly,
};
return await GeneratePersonalAccessTokenAsync(
diff --git a/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadCharts.g.cs b/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadCharts.g.cs
index d0eba90d..3cfd641e 100644
--- a/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadCharts.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadCharts.g.cs
@@ -108,7 +108,9 @@ partial void ProcessReadChartsResponseContent(
///
///
///
- ///
+ ///
+ /// Timedelta input.
+ ///
///
///
/// The token to cancel the operation with
diff --git a/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleChart.g.cs b/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleChart.g.cs
index e2d08f4f..310964be 100644
--- a/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleChart.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleChart.g.cs
@@ -115,7 +115,9 @@ partial void ProcessReadSingleChartResponseContent(
///
///
///
- ///
+ ///
+ /// Timedelta input.
+ ///
///
///
/// The token to cancel the operation with
diff --git a/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleSection.g.cs b/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleSection.g.cs
index ae31e6af..3f67b9db 100644
--- a/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleSection.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.ChartsClient.ReadSingleSection.g.cs
@@ -115,7 +115,9 @@ partial void ProcessReadSingleSectionResponseContent(
///
///
///
- ///
+ ///
+ /// Timedelta input.
+ ///
/// The token to cancel the operation with
///
public async global::System.Threading.Tasks.Task ReadSingleSectionAsync(
diff --git a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDataset.g.cs b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDataset.g.cs
index a6ef7eb3..480ffd00 100644
--- a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDataset.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.CreateDataset.g.cs
@@ -114,7 +114,7 @@ partial void ProcessCreateDatasetResponseContent(
///
///
///
- /// Default Value: kv
+ /// Enum for dataset data types.
///
/// The token to cancel the operation with
///
@@ -127,7 +127,7 @@ partial void ProcessCreateDatasetResponseContent(
global::LangSmith.AnyOf? externallyManaged = default,
global::LangSmith.AnyOf? id = default,
global::LangSmith.AnyOf? extra = default,
- global::LangSmith.DataType? dataType = global::LangSmith.DataType.Kv,
+ global::LangSmith.DataType? dataType = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var request = new global::LangSmith.DatasetCreate
diff --git a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadComparativeExperiments.g.cs b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadComparativeExperiments.g.cs
index b1d518cb..3ffdde1e 100644
--- a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadComparativeExperiments.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadComparativeExperiments.g.cs
@@ -13,7 +13,7 @@ partial void PrepareReadComparativeExperimentsArguments(
ref global::LangSmith.AnyOf, object>? id,
ref int? offset,
ref int? limit,
- ref global::LangSmith.AllOf? sortBy,
+ ref global::LangSmith.SortByComparativeExperimentColumn? sortBy,
ref bool? sortByDesc);
partial void PrepareReadComparativeExperimentsRequest(
global::System.Net.Http.HttpClient httpClient,
@@ -24,7 +24,7 @@ partial void PrepareReadComparativeExperimentsRequest(
global::LangSmith.AnyOf, object>? id,
int? offset,
int? limit,
- global::LangSmith.AllOf? sortBy,
+ global::LangSmith.SortByComparativeExperimentColumn? sortBy,
bool? sortByDesc);
partial void ProcessReadComparativeExperimentsResponse(
global::System.Net.Http.HttpClient httpClient,
@@ -50,7 +50,7 @@ partial void ProcessReadComparativeExperimentsResponseContent(
/// Default Value: 100
///
///
- /// Default Value: created_at
+ /// Enum for available comparative experiment columns to sort by.
///
///
/// Default Value: true
@@ -64,7 +64,7 @@ partial void ProcessReadComparativeExperimentsResponseContent(
global::LangSmith.AnyOf, object>? id = default,
int? offset = 0,
int? limit = 100,
- global::LangSmith.AllOf? sortBy = default,
+ global::LangSmith.SortByComparativeExperimentColumn? sortBy = default,
bool? sortByDesc = true,
global::System.Threading.CancellationToken cancellationToken = default)
{
@@ -90,7 +90,7 @@ partial void ProcessReadComparativeExperimentsResponseContent(
.AddOptionalParameter("id", id?.ToString() ?? string.Empty)
.AddOptionalParameter("offset", offset?.ToString())
.AddOptionalParameter("limit", limit?.ToString())
- .AddOptionalParameter("sort_by", sortBy?.ToString() ?? string.Empty)
+ .AddOptionalParameter("sort_by", sortBy?.ToValueString())
.AddOptionalParameter("sort_by_desc", sortByDesc?.ToString())
;
var __path = __pathBuilder.ToString();
diff --git a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadDatasets.g.cs b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadDatasets.g.cs
index 95158ed9..22e3accf 100644
--- a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadDatasets.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.ReadDatasets.g.cs
@@ -14,7 +14,7 @@ partial void PrepareReadDatasetsArguments(
ref global::LangSmith.AnyOf? metadata,
ref int? offset,
ref int? limit,
- ref global::LangSmith.AllOf? sortBy,
+ ref global::LangSmith.SortByDatasetColumn? sortBy,
ref bool? sortByDesc,
ref global::LangSmith.AnyOf, object>? tagValueId);
partial void PrepareReadDatasetsRequest(
@@ -27,7 +27,7 @@ partial void PrepareReadDatasetsRequest(
global::LangSmith.AnyOf? metadata,
int? offset,
int? limit,
- global::LangSmith.AllOf? sortBy,
+ global::LangSmith.SortByDatasetColumn? sortBy,
bool? sortByDesc,
global::LangSmith.AnyOf, object>? tagValueId);
partial void ProcessReadDatasetsResponse(
@@ -55,7 +55,7 @@ partial void ProcessReadDatasetsResponseContent(
/// Default Value: 100
///
///
- /// Default Value: last_session_start_time
+ /// Enum for available dataset columns to sort by.
///
///
/// Default Value: true
@@ -71,7 +71,7 @@ partial void ProcessReadDatasetsResponseContent(
global::LangSmith.AnyOf? metadata = default,
int? offset = 0,
int? limit = 100,
- global::LangSmith.AllOf? sortBy = default,
+ global::LangSmith.SortByDatasetColumn? sortBy = default,
bool? sortByDesc = true,
global::LangSmith.AnyOf, object>? tagValueId = default,
global::System.Threading.CancellationToken cancellationToken = default)
@@ -102,7 +102,7 @@ partial void ProcessReadDatasetsResponseContent(
.AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty)
.AddOptionalParameter("offset", offset?.ToString())
.AddOptionalParameter("limit", limit?.ToString())
- .AddOptionalParameter("sort_by", sortBy?.ToString() ?? string.Empty)
+ .AddOptionalParameter("sort_by", sortBy?.ToValueString())
.AddOptionalParameter("sort_by_desc", sortByDesc?.ToString())
.AddOptionalParameter("tag_value_id", tagValueId?.ToString() ?? string.Empty)
;
diff --git a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.UploadCsvDataset.g.cs b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.UploadCsvDataset.g.cs
index 88f71c16..ea100420 100644
--- a/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.UploadCsvDataset.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.DatasetsClient.UploadCsvDataset.g.cs
@@ -67,7 +67,7 @@ partial void ProcessUploadCsvDatasetResponseContent(
content: new global::System.Net.Http.StringContent(request.Name?.Value1?.ToString() ?? request.Name?.Value2?.ToString() ?? string.Empty),
name: "name");
}
- if (request.DataType != global::LangSmith.DataType.Kv)
+ if (request.DataType != default)
{
__httpRequestContent.Add(
content: new global::System.Net.Http.StringContent($"{request.DataType?.ToValueString()}"),
@@ -141,7 +141,7 @@ partial void ProcessUploadCsvDatasetResponseContent(
///
///
///
- /// Default Value: kv
+ /// Enum for dataset data types.
///
///
///
@@ -152,7 +152,7 @@ partial void ProcessUploadCsvDatasetResponseContent(
string filename,
global::System.Collections.Generic.IList inputKeys,
global::LangSmith.AnyOf? name = default,
- global::LangSmith.DataType? dataType = global::LangSmith.DataType.Kv,
+ global::LangSmith.DataType? dataType = default,
global::System.Collections.Generic.IList? outputKeys = default,
global::LangSmith.AnyOf? description = default,
global::System.Threading.CancellationToken cancellationToken = default)
diff --git a/src/libs/LangSmith/Generated/LangSmith.ExamplesClient.ReadExamples.g.cs b/src/libs/LangSmith/Generated/LangSmith.ExamplesClient.ReadExamples.g.cs
index 770a2d06..02fe2434 100644
--- a/src/libs/LangSmith/Generated/LangSmith.ExamplesClient.ReadExamples.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.ExamplesClient.ReadExamples.g.cs
@@ -15,7 +15,7 @@ partial void PrepareReadExamplesArguments(
ref global::LangSmith.AnyOf? dataset,
ref int? offset,
ref int? limit,
- ref global::LangSmith.AllOf? order,
+ ref global::LangSmith.ExampleListOrder? order,
ref global::LangSmith.AnyOf? randomSeed,
global::System.Collections.Generic.IList? select,
ref global::LangSmith.AnyOf? filter);
@@ -30,7 +30,7 @@ partial void PrepareReadExamplesRequest(
global::LangSmith.AnyOf? dataset,
int? offset,
int? limit,
- global::LangSmith.AllOf? order,
+ global::LangSmith.ExampleListOrder? order,
global::LangSmith.AnyOf? randomSeed,
global::System.Collections.Generic.IList? select,
global::LangSmith.AnyOf? filter);
@@ -62,9 +62,7 @@ partial void ProcessReadExamplesResponseContent(
///
/// Default Value: 100
///
- ///
- /// Default Value: recent
- ///
+ ///
///
///
/// Default Value: [id, created_at, modified_at, name, dataset_id, source_run_id, metadata, inputs, outputs]
@@ -81,7 +79,7 @@ partial void ProcessReadExamplesResponseContent(
global::LangSmith.AnyOf? dataset = default,
int? offset = 0,
int? limit = 100,
- global::LangSmith.AllOf? order = default,
+ global::LangSmith.ExampleListOrder? order = default,
global::LangSmith.AnyOf? randomSeed = default,
global::System.Collections.Generic.IList? select = default,
global::LangSmith.AnyOf? filter = default,
@@ -116,7 +114,7 @@ partial void ProcessReadExamplesResponseContent(
.AddOptionalParameter("dataset", dataset?.ToString() ?? string.Empty)
.AddOptionalParameter("offset", offset?.ToString())
.AddOptionalParameter("limit", limit?.ToString())
- .AddOptionalParameter("order", order?.ToString() ?? string.Empty)
+ .AddOptionalParameter("order", order?.ToValueString())
.AddOptionalParameter("random_seed", randomSeed?.ToString() ?? string.Empty)
.AddOptionalParameter("filter", filter?.ToString() ?? string.Empty)
;
diff --git a/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GenerateApiKey.g.cs b/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GenerateApiKey.g.cs
index e454c6d3..36b9ce62 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GenerateApiKey.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GenerateApiKey.g.cs
@@ -12,16 +12,24 @@ public partial interface IApiKeyClient
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task GenerateApiKeyAsync(
- global::LangSmith.AllOf request,
+ global::LangSmith.APIKeyCreateRequest request,
global::System.Threading.CancellationToken cancellationToken = default);
///
/// Generate Api Key
/// Generate an api key for the user
///
+ ///
+ /// Default Value: Default API key
+ ///
+ ///
+ /// Default Value: false
+ ///
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task GenerateApiKeyAsync(
+ string? description = "Default API key",
+ bool? readOnly = false,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
\ No newline at end of file
diff --git a/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GeneratePersonalAccessToken.g.cs b/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GeneratePersonalAccessToken.g.cs
index 39257d16..69e6432c 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GeneratePersonalAccessToken.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IApiKeyClient.GeneratePersonalAccessToken.g.cs
@@ -12,16 +12,24 @@ public partial interface IApiKeyClient
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync(
- global::LangSmith.AllOf request,
+ global::LangSmith.APIKeyCreateRequest request,
global::System.Threading.CancellationToken cancellationToken = default);
///
/// Generate Personal Access Token
/// Generate a Personal Access Token the user
///
+ ///
+ /// Default Value: Default API key
+ ///
+ ///
+ /// Default Value: false
+ ///
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task GeneratePersonalAccessTokenAsync(
+ string? description = "Default API key",
+ bool? readOnly = false,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
\ No newline at end of file
diff --git a/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadCharts.g.cs b/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadCharts.g.cs
index cb4c8d08..fd90d15d 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadCharts.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadCharts.g.cs
@@ -24,7 +24,9 @@ public partial interface IChartsClient
///
///
///
- ///
+ ///
+ /// Timedelta input.
+ ///
///
///
/// The token to cancel the operation with
diff --git a/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleChart.g.cs b/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleChart.g.cs
index 85ed5c4f..b549c976 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleChart.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleChart.g.cs
@@ -27,7 +27,9 @@ public partial interface IChartsClient
///
///
///
- ///
+ ///
+ /// Timedelta input.
+ ///
///
///
/// The token to cancel the operation with
diff --git a/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleSection.g.cs b/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleSection.g.cs
index b40f48dc..32f3a8e5 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleSection.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IChartsClient.ReadSingleSection.g.cs
@@ -27,7 +27,9 @@ public partial interface IChartsClient
///
///
///
- ///
+ ///
+ /// Timedelta input.
+ ///
/// The token to cancel the operation with
///
global::System.Threading.Tasks.Task ReadSingleSectionAsync(
diff --git a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.CreateDataset.g.cs b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.CreateDataset.g.cs
index 3b8641d6..ae294e1d 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.CreateDataset.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.CreateDataset.g.cs
@@ -30,7 +30,7 @@ public partial interface IDatasetsClient
///
///
///
- /// Default Value: kv
+ /// Enum for dataset data types.
///
/// The token to cancel the operation with
///
@@ -43,7 +43,7 @@ public partial interface IDatasetsClient
global::LangSmith.AnyOf? externallyManaged = default,
global::LangSmith.AnyOf? id = default,
global::LangSmith.AnyOf? extra = default,
- global::LangSmith.DataType? dataType = global::LangSmith.DataType.Kv,
+ global::LangSmith.DataType? dataType = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
\ No newline at end of file
diff --git a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadComparativeExperiments.g.cs b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadComparativeExperiments.g.cs
index 47bc2309..0695cf4c 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadComparativeExperiments.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadComparativeExperiments.g.cs
@@ -19,7 +19,7 @@ public partial interface IDatasetsClient
/// Default Value: 100
///
///
- /// Default Value: created_at
+ /// Enum for available comparative experiment columns to sort by.
///
///
/// Default Value: true
@@ -33,7 +33,7 @@ public partial interface IDatasetsClient
global::LangSmith.AnyOf, object>? id = default,
int? offset = 0,
int? limit = 100,
- global::LangSmith.AllOf? sortBy = default,
+ global::LangSmith.SortByComparativeExperimentColumn? sortBy = default,
bool? sortByDesc = true,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadDatasets.g.cs b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadDatasets.g.cs
index 180cc4ea..5056b5ea 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadDatasets.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.ReadDatasets.g.cs
@@ -20,7 +20,7 @@ public partial interface IDatasetsClient
/// Default Value: 100
///
///
- /// Default Value: last_session_start_time
+ /// Enum for available dataset columns to sort by.
///
///
/// Default Value: true
@@ -36,7 +36,7 @@ public partial interface IDatasetsClient
global::LangSmith.AnyOf? metadata = default,
int? offset = 0,
int? limit = 100,
- global::LangSmith.AllOf? sortBy = default,
+ global::LangSmith.SortByDatasetColumn? sortBy = default,
bool? sortByDesc = true,
global::LangSmith.AnyOf, object>? tagValueId = default,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.UploadCsvDataset.g.cs b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.UploadCsvDataset.g.cs
index 61ee2f61..27ed96ed 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.UploadCsvDataset.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IDatasetsClient.UploadCsvDataset.g.cs
@@ -24,7 +24,7 @@ public partial interface IDatasetsClient
///
///
///
- /// Default Value: kv
+ /// Enum for dataset data types.
///
///
///
@@ -35,7 +35,7 @@ public partial interface IDatasetsClient
string filename,
global::System.Collections.Generic.IList inputKeys,
global::LangSmith.AnyOf? name = default,
- global::LangSmith.DataType? dataType = global::LangSmith.DataType.Kv,
+ global::LangSmith.DataType? dataType = default,
global::System.Collections.Generic.IList? outputKeys = default,
global::LangSmith.AnyOf? description = default,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/LangSmith/Generated/LangSmith.IExamplesClient.ReadExamples.g.cs b/src/libs/LangSmith/Generated/LangSmith.IExamplesClient.ReadExamples.g.cs
index 53164215..33855462 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IExamplesClient.ReadExamples.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IExamplesClient.ReadExamples.g.cs
@@ -23,9 +23,7 @@ public partial interface IExamplesClient
///
/// Default Value: 100
///
- ///
- /// Default Value: recent
- ///
+ ///
///
///
/// Default Value: [id, created_at, modified_at, name, dataset_id, source_run_id, metadata, inputs, outputs]
@@ -42,7 +40,7 @@ public partial interface IExamplesClient
global::LangSmith.AnyOf? dataset = default,
int? offset = 0,
int? limit = 100,
- global::LangSmith.AllOf? order = default,
+ global::LangSmith.ExampleListOrder? order = default,
global::LangSmith.AnyOf? randomSeed = default,
global::System.Collections.Generic.IList? select = default,
global::LangSmith.AnyOf? filter = default,
diff --git a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.BatchHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.BatchHandler.g.cs
index 472ba86b..65ea6a8f 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.BatchHandler.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.BatchHandler.g.cs
@@ -22,6 +22,7 @@ public partial interface IPlaygroundClient
///
///
///
+ ///
///
/// Configuration for a Runnable.
///
@@ -37,6 +38,7 @@ public partial interface IPlaygroundClient
global::LangSmith.AnyOf? runId = default,
global::LangSmith.AnyOf? repoId = default,
global::LangSmith.AnyOf, object>? tools = default,
+ global::LangSmith.AnyOf? toolChoice = default,
global::LangSmith.AnyOf? projectName = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.DatasetHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.DatasetHandler.g.cs
index 1a2d1ff2..6ec57779 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.DatasetHandler.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.DatasetHandler.g.cs
@@ -22,6 +22,7 @@ public partial interface IPlaygroundClient
///
///
///
+ ///
///
/// Configuration for a Runnable.
///
@@ -40,6 +41,7 @@ public partial interface IPlaygroundClient
global::LangSmith.AnyOf? runId = default,
global::LangSmith.AnyOf? repoId = default,
global::LangSmith.AnyOf, object>? tools = default,
+ global::LangSmith.AnyOf? toolChoice = default,
global::LangSmith.AnyOf? projectName = default,
int? repetitions = 1,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.InvokeHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.InvokeHandler.g.cs
index 3b015806..d754efc6 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.InvokeHandler.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.InvokeHandler.g.cs
@@ -22,6 +22,7 @@ public partial interface IPlaygroundClient
///
///
///
+ ///
///
/// Configuration for a Runnable.
///
@@ -40,6 +41,7 @@ public partial interface IPlaygroundClient
global::LangSmith.AnyOf? runId = default,
global::LangSmith.AnyOf? repoId = default,
global::LangSmith.AnyOf, object>? tools = default,
+ global::LangSmith.AnyOf? toolChoice = default,
global::LangSmith.AnyOf? projectName = default,
int? repetitions = 1,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamDatasetHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamDatasetHandler.g.cs
index a5cae702..87009dde 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamDatasetHandler.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamDatasetHandler.g.cs
@@ -22,6 +22,7 @@ public partial interface IPlaygroundClient
///
///
///
+ ///
///
/// Configuration for a Runnable.
///
@@ -40,6 +41,7 @@ public partial interface IPlaygroundClient
global::LangSmith.AnyOf? runId = default,
global::LangSmith.AnyOf? repoId = default,
global::LangSmith.AnyOf, object>? tools = default,
+ global::LangSmith.AnyOf? toolChoice = default,
global::LangSmith.AnyOf? projectName = default,
int? repetitions = 1,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamHandler.g.cs
index 280b3e2e..f1533864 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamHandler.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IPlaygroundClient.StreamHandler.g.cs
@@ -22,6 +22,7 @@ public partial interface IPlaygroundClient
///
///
///
+ ///
///
/// Configuration for a Runnable.
///
@@ -37,6 +38,7 @@ public partial interface IPlaygroundClient
global::LangSmith.AnyOf? runId = default,
global::LangSmith.AnyOf? repoId = default,
global::LangSmith.AnyOf, object>? tools = default,
+ global::LangSmith.AnyOf? toolChoice = default,
global::LangSmith.AnyOf? projectName = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.QuerySharedDatasetRuns.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.QuerySharedDatasetRuns.g.cs
index 87ce99f6..01e2cb30 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.QuerySharedDatasetRuns.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.QuerySharedDatasetRuns.g.cs
@@ -46,7 +46,7 @@ public partial interface IPublicClient
/// Default Value: [id, name, run_type, start_time, end_time, status, error, extra, events, inputs, outputs, parent_run_id, manifest_id, manifest_s3_id, session_id, serialized, reference_example_id, total_tokens, prompt_tokens, completion_tokens, total_cost, prompt_cost, completion_cost, price_model_id, first_token_time, trace_id, dotted_order, last_queued_at, feedback_stats, parent_run_ids, tags, in_dataset, app_path, share_token, trace_tier, trace_first_received_at, ttl_seconds, trace_upgrade]
///
///
- /// Default Value: desc
+ /// Enum for run start date order.
///
/// The token to cancel the operation with
///
@@ -71,7 +71,7 @@ public partial interface IPublicClient
global::LangSmith.AnyOf? cursor = default,
int? limit = 100,
global::System.Collections.Generic.IList? select = default,
- global::LangSmith.RunDateOrder? order = global::LangSmith.RunDateOrder.Desc,
+ global::LangSmith.RunDateOrder? order = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
\ No newline at end of file
diff --git a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedComparativeExperiments.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedComparativeExperiments.g.cs
index 0e068eef..c9c475ee 100644
--- a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedComparativeExperiments.g.cs
+++ b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedComparativeExperiments.g.cs
@@ -18,7 +18,7 @@ public partial interface IPublicClient
/// Default Value: 100
///
///
- /// Default Value: created_at
+ /// Enum for available comparative experiment columns to sort by.
///
///
/// Default Value: true
@@ -31,7 +31,7 @@ public partial interface IPublicClient
global::LangSmith.AnyOf? nameContains = default,
int? offset = 0,
int? limit = 100,
- global::LangSmith.AllOf