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? sortBy = default, + global::LangSmith.SortByComparativeExperimentColumn? sortBy = default, bool? sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDataset.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDataset.g.cs index 1f5e0fd9..fc4aacd1 100644 --- a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDataset.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDataset.g.cs @@ -16,7 +16,7 @@ public partial interface IPublicClient /// Default Value: 100 /// /// - /// Default Value: last_session_start_time + /// Enum for available dataset columns to sort by. /// /// /// Default Value: true @@ -27,7 +27,7 @@ public partial interface IPublicClient global::System.Guid shareToken, int? offset = 0, int? limit = 100, - global::LangSmith.AllOf? sortBy = default, + global::LangSmith.SortByDatasetColumn? sortBy = default, bool? sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDatasetTracerSessions.g.cs b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDatasetTracerSessions.g.cs index 3ed1c2bf..35183eed 100644 --- a/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDatasetTracerSessions.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.IPublicClient.ReadSharedDatasetTracerSessions.g.cs @@ -13,9 +13,7 @@ public partial interface IPublicClient /// /// /// - /// - /// Default Value: start_time - /// + /// /// /// Default Value: true /// @@ -38,7 +36,7 @@ public partial interface IPublicClient global::LangSmith.AnyOf? name = default, global::LangSmith.AnyOf? nameContains = default, global::LangSmith.AnyOf? datasetVersion = default, - global::LangSmith.AllOf? sortBy = default, + global::LangSmith.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, global::LangSmith.AnyOf? sortByFeedbackKey = default, int? offset = 0, diff --git a/src/libs/LangSmith/Generated/LangSmith.IRunClient.MonitorTracerSession.g.cs b/src/libs/LangSmith/Generated/LangSmith.IRunClient.MonitorTracerSession.g.cs index 49d74958..29729357 100644 --- a/src/libs/LangSmith/Generated/LangSmith.IRunClient.MonitorTracerSession.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.IRunClient.MonitorTracerSession.g.cs @@ -23,8 +23,12 @@ public partial interface IRunClient /// Default Value: UTC /// /// - /// - /// + /// + /// Timedelta input. + /// + /// + /// Timedelta input. + /// /// The token to cancel the operation with /// global::System.Threading.Tasks.Task MonitorTracerSessionAsync( diff --git a/src/libs/LangSmith/Generated/LangSmith.IRunClient.QueryRuns.g.cs b/src/libs/LangSmith/Generated/LangSmith.IRunClient.QueryRuns.g.cs index 8a02db80..22e0ae56 100644 --- a/src/libs/LangSmith/Generated/LangSmith.IRunClient.QueryRuns.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.IRunClient.QueryRuns.g.cs @@ -41,7 +41,7 @@ public partial interface IRunClient /// 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 /// @@ -65,7 +65,7 @@ public partial interface IRunClient 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.ITracerSessionsClient.ReadTracerSessions.g.cs b/src/libs/LangSmith/Generated/LangSmith.ITracerSessionsClient.ReadTracerSessions.g.cs index da1197fd..5dc97193 100644 --- a/src/libs/LangSmith/Generated/LangSmith.ITracerSessionsClient.ReadTracerSessions.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.ITracerSessionsClient.ReadTracerSessions.g.cs @@ -14,9 +14,7 @@ public partial interface ITracerSessionsClient /// /// /// - /// - /// Default Value: start_time - /// + /// /// /// Default Value: true /// @@ -42,7 +40,7 @@ public partial interface ITracerSessionsClient global::LangSmith.AnyOf? name = default, global::LangSmith.AnyOf? nameContains = default, global::LangSmith.AnyOf? datasetVersion = default, - global::LangSmith.AllOf? sortBy = default, + global::LangSmith.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, global::LangSmith.AnyOf? metadata = default, global::LangSmith.AnyOf? sortByFeedbackKey = default, diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.BodyParamsForRunSchema.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.BodyParamsForRunSchema.g.cs index 1461c0cf..83a4ae76 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.BodyParamsForRunSchema.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.BodyParamsForRunSchema.g.cs @@ -142,11 +142,11 @@ public sealed partial class BodyParamsForRunSchema public global::System.Collections.Generic.IList? Select { get; set; } /// - /// Default Value: desc + /// Enum for run start date order. /// [global::System.Text.Json.Serialization.JsonPropertyName("order")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.RunDateOrderJsonConverter))] - public global::LangSmith.RunDateOrder? Order { get; set; } = global::LangSmith.RunDateOrder.Desc; + public global::LangSmith.RunDateOrder? Order { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.cs index a1010c8f..8456e1f5 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.BodyUploadCsvDatasetApiV1DatasetsUploadPost.g.cs @@ -39,11 +39,11 @@ public sealed partial class BodyUploadCsvDatasetApiV1DatasetsUploadPost public global::LangSmith.AnyOf? Name { get; set; } /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.DataTypeJsonConverter))] - public global::LangSmith.DataType? DataType { get; set; } = global::LangSmith.DataType.Kv; + public global::LangSmith.DataType? DataType { get; set; } /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequest.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequest.g.cs index 4c89f327..3efaca49 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequest.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequest.g.cs @@ -31,7 +31,7 @@ public sealed partial class CustomChartsRequest public global::LangSmith.AnyOf? EndTime { get; set; } /// - /// + /// Timedelta input. /// [global::System.Text.Json.Serialization.JsonPropertyName("stride")] public global::LangSmith.TimedeltaInput? Stride { get; set; } diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequestBase.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequestBase.g.cs index e31a080b..8e936e68 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequestBase.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.CustomChartsRequestBase.g.cs @@ -31,7 +31,7 @@ public sealed partial class CustomChartsRequestBase public global::LangSmith.AnyOf? EndTime { get; set; } /// - /// + /// Timedelta input. /// [global::System.Text.Json.Serialization.JsonPropertyName("stride")] public global::LangSmith.TimedeltaInput? Stride { get; set; } diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs index 2c2ee4c6..8da0fcd8 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.DatasetCreate.g.cs @@ -66,11 +66,11 @@ public sealed partial class DatasetCreate public global::LangSmith.AnyOf? Extra { get; set; } /// - /// Default Value: kv + /// Enum for dataset data types. /// [global::System.Text.Json.Serialization.JsonPropertyName("data_type")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.DataTypeJsonConverter))] - public global::LangSmith.DataType? DataType { get; set; } = global::LangSmith.DataType.Kv; + public global::LangSmith.DataType? DataType { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.Identity.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.Identity.g.cs index c52fb84a..57eff1f5 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.Identity.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.Identity.g.cs @@ -74,11 +74,11 @@ public sealed partial class Identity public global::LangSmith.AnyOf? RoleName { get; set; } /// - /// Default Value: workspace + /// /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AccessScopeJsonConverter))] - public global::LangSmith.AccessScope? AccessScope { get; set; } = global::LangSmith.AccessScope.Workspace; + public global::LangSmith.AccessScope? AccessScope { get; set; } /// /// Additional properties that are not explicitly defined in the schema diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.MemberIdentity.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.MemberIdentity.g.cs index 517afc91..7be58def 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.MemberIdentity.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.MemberIdentity.g.cs @@ -74,11 +74,11 @@ public sealed partial class MemberIdentity public global::LangSmith.AnyOf? RoleName { get; set; } /// - /// Default Value: workspace + /// /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AccessScopeJsonConverter))] - public global::LangSmith.AccessScope? AccessScope { get; set; } = global::LangSmith.AccessScope.Workspace; + public global::LangSmith.AccessScope? AccessScope { get; set; } /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.MonitorRequest.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.MonitorRequest.g.cs index 52fce204..667f03a4 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.MonitorRequest.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.MonitorRequest.g.cs @@ -22,13 +22,13 @@ public sealed partial class MonitorRequest public required global::System.Collections.Generic.IList Groups { get; set; } /// - /// + /// Timedelta input. /// [global::System.Text.Json.Serialization.JsonPropertyName("interval")] public global::LangSmith.TimedeltaInput? Interval { get; set; } /// - /// + /// Timedelta input. /// [global::System.Text.Json.Serialization.JsonPropertyName("stride")] public global::LangSmith.TimedeltaInput? Stride { get; set; } diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.OrgMemberIdentity.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.OrgMemberIdentity.g.cs index 42b45153..9311d344 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.OrgMemberIdentity.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.OrgMemberIdentity.g.cs @@ -74,11 +74,11 @@ public sealed partial class OrgMemberIdentity public global::LangSmith.AnyOf? RoleName { get; set; } /// - /// Default Value: workspace + /// /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AccessScopeJsonConverter))] - public global::LangSmith.AccessScope? AccessScope { get; set; } = global::LangSmith.AccessScope.Workspace; + public global::LangSmith.AccessScope? AccessScope { get; set; } /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.OrgPendingIdentity.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.OrgPendingIdentity.g.cs index 9a715492..fa2457e8 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.OrgPendingIdentity.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.OrgPendingIdentity.g.cs @@ -59,11 +59,11 @@ public sealed partial class OrgPendingIdentity public global::LangSmith.AnyOf? FullName { get; set; } /// - /// Default Value: workspace + /// /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AccessScopeJsonConverter))] - public global::LangSmith.AccessScope? AccessScope { get; set; } = global::LangSmith.AccessScope.Workspace; + public global::LangSmith.AccessScope? AccessScope { get; set; } /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PendingIdentity.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PendingIdentity.g.cs index dbf779d3..305b4d89 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PendingIdentity.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PendingIdentity.g.cs @@ -59,11 +59,11 @@ public sealed partial class PendingIdentity public global::LangSmith.AnyOf? FullName { get; set; } /// - /// Default Value: workspace + /// /// [global::System.Text.Json.Serialization.JsonPropertyName("access_scope")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AccessScopeJsonConverter))] - public global::LangSmith.AccessScope? AccessScope { get; set; } = global::LangSmith.AccessScope.Workspace; + public global::LangSmith.AccessScope? AccessScope { get; set; } /// /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundBatchRequestSchema.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundBatchRequestSchema.g.cs index a4080e64..bbbf56f7 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundBatchRequestSchema.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundBatchRequestSchema.g.cs @@ -45,6 +45,13 @@ public sealed partial class PlaygroundBatchRequestSchema [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] public global::LangSmith.AnyOf, object>? Tools { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("tool_choice")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] + public global::LangSmith.AnyOf? ToolChoice { get; set; } + /// /// Configuration for a Runnable. /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundInvokeRequestSchema.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundInvokeRequestSchema.g.cs index c7933dcc..e33b3040 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundInvokeRequestSchema.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundInvokeRequestSchema.g.cs @@ -45,6 +45,13 @@ public sealed partial class PlaygroundInvokeRequestSchema [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] public global::LangSmith.AnyOf, object>? Tools { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("tool_choice")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] + public global::LangSmith.AnyOf? ToolChoice { get; set; } + /// /// Configuration for a Runnable. /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundRunOverDatasetRequestSchema.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundRunOverDatasetRequestSchema.g.cs index ddef6d92..8ec16948 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundRunOverDatasetRequestSchema.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundRunOverDatasetRequestSchema.g.cs @@ -45,6 +45,13 @@ public sealed partial class PlaygroundRunOverDatasetRequestSchema [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] public global::LangSmith.AnyOf, object>? Tools { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("tool_choice")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] + public global::LangSmith.AnyOf? ToolChoice { get; set; } + /// /// Configuration for a Runnable. /// diff --git a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundStreamRequestSchema.g.cs b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundStreamRequestSchema.g.cs index 8f764167..cce21e3e 100644 --- a/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundStreamRequestSchema.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.Models.PlaygroundStreamRequestSchema.g.cs @@ -45,6 +45,13 @@ public sealed partial class PlaygroundStreamRequestSchema [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] public global::LangSmith.AnyOf, object>? Tools { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("tool_choice")] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LangSmith.JsonConverters.AnyOfJsonConverterFactory2))] + public global::LangSmith.AnyOf? ToolChoice { get; set; } + /// /// Configuration for a Runnable. /// diff --git a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.BatchHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.BatchHandler.g.cs index 875f7fc0..2b7ac32d 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.BatchHandler.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.BatchHandler.g.cs @@ -106,6 +106,7 @@ partial void ProcessBatchHandlerResponseContent( /// /// /// + /// /// /// Configuration for a Runnable. /// @@ -121,6 +122,7 @@ partial void ProcessBatchHandlerResponseContent( 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) { @@ -131,6 +133,7 @@ partial void ProcessBatchHandlerResponseContent( RunId = runId, RepoId = repoId, Tools = tools, + ToolChoice = toolChoice, Options = options, ProjectName = projectName, Input = input, diff --git a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.DatasetHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.DatasetHandler.g.cs index 37ee27d0..2c588e7e 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.DatasetHandler.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.DatasetHandler.g.cs @@ -106,6 +106,7 @@ partial void ProcessDatasetHandlerResponseContent( /// /// /// + /// /// /// Configuration for a Runnable. /// @@ -124,6 +125,7 @@ partial void ProcessDatasetHandlerResponseContent( 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) @@ -135,6 +137,7 @@ partial void ProcessDatasetHandlerResponseContent( RunId = runId, RepoId = repoId, Tools = tools, + ToolChoice = toolChoice, Options = options, ProjectName = projectName, DatasetId = datasetId, diff --git a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.InvokeHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.InvokeHandler.g.cs index d9c77b5a..b96170be 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.InvokeHandler.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.InvokeHandler.g.cs @@ -106,6 +106,7 @@ partial void ProcessInvokeHandlerResponseContent( /// /// /// + /// /// /// Configuration for a Runnable. /// @@ -124,6 +125,7 @@ partial void ProcessInvokeHandlerResponseContent( 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) @@ -135,6 +137,7 @@ partial void ProcessInvokeHandlerResponseContent( RunId = runId, RepoId = repoId, Tools = tools, + ToolChoice = toolChoice, Options = options, ProjectName = projectName, Input = input, diff --git a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamDatasetHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamDatasetHandler.g.cs index 90c9fdc7..acf762d9 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamDatasetHandler.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamDatasetHandler.g.cs @@ -106,6 +106,7 @@ partial void ProcessStreamDatasetHandlerResponseContent( /// /// /// + /// /// /// Configuration for a Runnable. /// @@ -124,6 +125,7 @@ partial void ProcessStreamDatasetHandlerResponseContent( 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) @@ -135,6 +137,7 @@ partial void ProcessStreamDatasetHandlerResponseContent( RunId = runId, RepoId = repoId, Tools = tools, + ToolChoice = toolChoice, Options = options, ProjectName = projectName, DatasetId = datasetId, diff --git a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamHandler.g.cs b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamHandler.g.cs index 88f931d7..2493f8ad 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamHandler.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PlaygroundClient.StreamHandler.g.cs @@ -106,6 +106,7 @@ partial void ProcessStreamHandlerResponseContent( /// /// /// + /// /// /// Configuration for a Runnable. /// @@ -121,6 +122,7 @@ partial void ProcessStreamHandlerResponseContent( 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) { @@ -131,6 +133,7 @@ partial void ProcessStreamHandlerResponseContent( RunId = runId, RepoId = repoId, Tools = tools, + ToolChoice = toolChoice, Options = options, ProjectName = projectName, Input = input, diff --git a/src/libs/LangSmith/Generated/LangSmith.PublicClient.QuerySharedDatasetRuns.g.cs b/src/libs/LangSmith/Generated/LangSmith.PublicClient.QuerySharedDatasetRuns.g.cs index 0109ab9e..791561b3 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PublicClient.QuerySharedDatasetRuns.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PublicClient.QuerySharedDatasetRuns.g.cs @@ -134,7 +134,7 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( /// 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 /// @@ -159,7 +159,7 @@ partial void ProcessQuerySharedDatasetRunsResponseContent( 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) { var request = new global::LangSmith.BodyParamsForRunSchema diff --git a/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedComparativeExperiments.g.cs b/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedComparativeExperiments.g.cs index 7983bfd5..3f3fb3d9 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedComparativeExperiments.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedComparativeExperiments.g.cs @@ -12,7 +12,7 @@ partial void PrepareReadSharedComparativeExperimentsArguments( ref global::LangSmith.AnyOf? nameContains, ref int? offset, ref int? limit, - ref global::LangSmith.AllOf? sortBy, + ref global::LangSmith.SortByComparativeExperimentColumn? sortBy, ref bool? sortByDesc); partial void PrepareReadSharedComparativeExperimentsRequest( global::System.Net.Http.HttpClient httpClient, @@ -22,7 +22,7 @@ partial void PrepareReadSharedComparativeExperimentsRequest( global::LangSmith.AnyOf? nameContains, int? offset, int? limit, - global::LangSmith.AllOf? sortBy, + global::LangSmith.SortByComparativeExperimentColumn? sortBy, bool? sortByDesc); partial void ProcessReadSharedComparativeExperimentsResponse( global::System.Net.Http.HttpClient httpClient, @@ -47,7 +47,7 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( /// Default Value: 100 /// /// - /// Default Value: created_at + /// Enum for available comparative experiment columns to sort by. /// /// /// Default Value: true @@ -60,7 +60,7 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( global::LangSmith.AnyOf? nameContains = 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) { @@ -84,7 +84,7 @@ partial void ProcessReadSharedComparativeExperimentsResponseContent( .AddOptionalParameter("name_contains", nameContains?.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.PublicClient.ReadSharedDataset.g.cs b/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedDataset.g.cs index 92c74188..2e19cac7 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedDataset.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedDataset.g.cs @@ -10,7 +10,7 @@ partial void PrepareReadSharedDatasetArguments( ref global::System.Guid shareToken, ref int? offset, ref int? limit, - ref global::LangSmith.AllOf? sortBy, + ref global::LangSmith.SortByDatasetColumn? sortBy, ref bool? sortByDesc); partial void PrepareReadSharedDatasetRequest( global::System.Net.Http.HttpClient httpClient, @@ -18,7 +18,7 @@ partial void PrepareReadSharedDatasetRequest( global::System.Guid shareToken, int? offset, int? limit, - global::LangSmith.AllOf? sortBy, + global::LangSmith.SortByDatasetColumn? sortBy, bool? sortByDesc); partial void ProcessReadSharedDatasetResponse( global::System.Net.Http.HttpClient httpClient, @@ -41,7 +41,7 @@ partial void ProcessReadSharedDatasetResponseContent( /// Default Value: 100 /// /// - /// Default Value: last_session_start_time + /// Enum for available dataset columns to sort by. /// /// /// Default Value: true @@ -52,7 +52,7 @@ partial void ProcessReadSharedDatasetResponseContent( global::System.Guid shareToken, int? offset = 0, int? limit = 100, - global::LangSmith.AllOf? sortBy = default, + global::LangSmith.SortByDatasetColumn? sortBy = default, bool? sortByDesc = true, global::System.Threading.CancellationToken cancellationToken = default) { @@ -72,7 +72,7 @@ partial void ProcessReadSharedDatasetResponseContent( __pathBuilder .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.PublicClient.ReadSharedDatasetTracerSessions.g.cs b/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedDatasetTracerSessions.g.cs index d4cb6af7..f295b30b 100644 --- a/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedDatasetTracerSessions.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.PublicClient.ReadSharedDatasetTracerSessions.g.cs @@ -12,7 +12,7 @@ partial void PrepareReadSharedDatasetTracerSessionsArguments( ref global::LangSmith.AnyOf? name, ref global::LangSmith.AnyOf? nameContains, ref global::LangSmith.AnyOf? datasetVersion, - ref global::LangSmith.AllOf? sortBy, + ref global::LangSmith.SessionSortableColumns? sortBy, ref bool? sortByDesc, ref global::LangSmith.AnyOf? sortByFeedbackKey, ref int? offset, @@ -27,7 +27,7 @@ partial void PrepareReadSharedDatasetTracerSessionsRequest( global::LangSmith.AnyOf? name, global::LangSmith.AnyOf? nameContains, global::LangSmith.AnyOf? datasetVersion, - global::LangSmith.AllOf? sortBy, + global::LangSmith.SessionSortableColumns? sortBy, bool? sortByDesc, global::LangSmith.AnyOf? sortByFeedbackKey, int? offset, @@ -52,9 +52,7 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( /// /// /// - /// - /// Default Value: start_time - /// + /// /// /// Default Value: true /// @@ -77,7 +75,7 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( global::LangSmith.AnyOf? name = default, global::LangSmith.AnyOf? nameContains = default, global::LangSmith.AnyOf? datasetVersion = default, - global::LangSmith.AllOf? sortBy = default, + global::LangSmith.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, global::LangSmith.AnyOf? sortByFeedbackKey = default, int? offset = 0, @@ -116,7 +114,7 @@ partial void ProcessReadSharedDatasetTracerSessionsResponseContent( .AddOptionalParameter("name", name?.ToString() ?? string.Empty) .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) .AddOptionalParameter("dataset_version", datasetVersion?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by", sortBy?.ToString() ?? string.Empty) + .AddOptionalParameter("sort_by", sortBy?.ToValueString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey?.ToString() ?? string.Empty) .AddOptionalParameter("offset", offset?.ToString()) diff --git a/src/libs/LangSmith/Generated/LangSmith.RunClient.MonitorTracerSession.g.cs b/src/libs/LangSmith/Generated/LangSmith.RunClient.MonitorTracerSession.g.cs index 02cf1248..45d02db1 100644 --- a/src/libs/LangSmith/Generated/LangSmith.RunClient.MonitorTracerSession.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.RunClient.MonitorTracerSession.g.cs @@ -107,8 +107,12 @@ partial void ProcessMonitorTracerSessionResponseContent( /// Default Value: UTC /// /// - /// - /// + /// + /// Timedelta input. + /// + /// + /// Timedelta input. + /// /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task MonitorTracerSessionAsync( diff --git a/src/libs/LangSmith/Generated/LangSmith.RunClient.QueryRuns.g.cs b/src/libs/LangSmith/Generated/LangSmith.RunClient.QueryRuns.g.cs index 03ec703d..3911fbf5 100644 --- a/src/libs/LangSmith/Generated/LangSmith.RunClient.QueryRuns.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.RunClient.QueryRuns.g.cs @@ -125,7 +125,7 @@ partial void ProcessQueryRunsResponseContent( /// 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 /// @@ -149,7 +149,7 @@ partial void ProcessQueryRunsResponseContent( 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) { var request = new global::LangSmith.BodyParamsForRunSchema diff --git a/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs b/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs index 9ae7b94a..95a1f548 100644 --- a/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs +++ b/src/libs/LangSmith/Generated/LangSmith.TracerSessionsClient.ReadTracerSessions.g.cs @@ -13,7 +13,7 @@ partial void PrepareReadTracerSessionsArguments( ref global::LangSmith.AnyOf? name, ref global::LangSmith.AnyOf? nameContains, ref global::LangSmith.AnyOf? datasetVersion, - ref global::LangSmith.AllOf? sortBy, + ref global::LangSmith.SessionSortableColumns? sortBy, ref bool? sortByDesc, ref global::LangSmith.AnyOf? metadata, ref global::LangSmith.AnyOf? sortByFeedbackKey, @@ -31,7 +31,7 @@ partial void PrepareReadTracerSessionsRequest( global::LangSmith.AnyOf? name, global::LangSmith.AnyOf? nameContains, global::LangSmith.AnyOf? datasetVersion, - global::LangSmith.AllOf? sortBy, + global::LangSmith.SessionSortableColumns? sortBy, bool? sortByDesc, global::LangSmith.AnyOf? metadata, global::LangSmith.AnyOf? sortByFeedbackKey, @@ -59,9 +59,7 @@ partial void ProcessReadTracerSessionsResponseContent( /// /// /// - /// - /// Default Value: start_time - /// + /// /// /// Default Value: true /// @@ -87,7 +85,7 @@ partial void ProcessReadTracerSessionsResponseContent( global::LangSmith.AnyOf? name = default, global::LangSmith.AnyOf? nameContains = default, global::LangSmith.AnyOf? datasetVersion = default, - global::LangSmith.AllOf? sortBy = default, + global::LangSmith.SessionSortableColumns? sortBy = default, bool? sortByDesc = true, global::LangSmith.AnyOf? metadata = default, global::LangSmith.AnyOf? sortByFeedbackKey = default, @@ -133,7 +131,7 @@ partial void ProcessReadTracerSessionsResponseContent( .AddOptionalParameter("name", name?.ToString() ?? string.Empty) .AddOptionalParameter("name_contains", nameContains?.ToString() ?? string.Empty) .AddOptionalParameter("dataset_version", datasetVersion?.ToString() ?? string.Empty) - .AddOptionalParameter("sort_by", sortBy?.ToString() ?? string.Empty) + .AddOptionalParameter("sort_by", sortBy?.ToValueString()) .AddOptionalParameter("sort_by_desc", sortByDesc?.ToString()) .AddOptionalParameter("metadata", metadata?.ToString() ?? string.Empty) .AddOptionalParameter("sort_by_feedback_key", sortByFeedbackKey?.ToString() ?? string.Empty) diff --git a/src/libs/LangSmith/openapi.yaml b/src/libs/LangSmith/openapi.yaml index d34a1e73..0d18e7a3 100644 --- a/src/libs/LangSmith/openapi.yaml +++ b/src/libs/LangSmith/openapi.yaml @@ -176,10 +176,7 @@ paths: - name: sort_by in: query schema: - title: Sort By - allOf: - - $ref: '#/components/schemas/SessionSortableColumns' - default: start_time + $ref: '#/components/schemas/SessionSortableColumns' - name: sort_by_desc in: query schema: @@ -1672,12 +1669,7 @@ paths: content: application/json: schema: - title: Payload - allOf: - - $ref: '#/components/schemas/APIKeyCreateRequest' - default: - description: Default API key - read_only: false + $ref: '#/components/schemas/APIKeyCreateRequest' responses: '200': description: Successful Response @@ -1758,12 +1750,7 @@ paths: content: application/json: schema: - title: Payload - allOf: - - $ref: '#/components/schemas/APIKeyCreateRequest' - default: - description: Default API key - read_only: false + $ref: '#/components/schemas/APIKeyCreateRequest' responses: '200': description: Successful Response @@ -2002,10 +1989,7 @@ paths: - name: order in: query schema: - title: Order - allOf: - - $ref: '#/components/schemas/ExampleListOrder' - default: recent + $ref: '#/components/schemas/ExampleListOrder' - name: random_seed in: query schema: @@ -2397,10 +2381,7 @@ paths: - name: sort_by in: query schema: - title: Sort By - allOf: - - $ref: '#/components/schemas/SortByDatasetColumn' - default: last_session_start_time + $ref: '#/components/schemas/SortByDatasetColumn' - name: sort_by_desc in: query schema: @@ -3091,10 +3072,7 @@ paths: - name: sort_by in: query schema: - title: Sort By - allOf: - - $ref: '#/components/schemas/SortByComparativeExperimentColumn' - default: created_at + $ref: '#/components/schemas/SortByComparativeExperimentColumn' - name: sort_by_desc in: query schema: @@ -4868,10 +4846,7 @@ paths: - name: sort_by in: query schema: - title: Sort By - allOf: - - $ref: '#/components/schemas/SortByDatasetColumn' - default: last_session_start_time + $ref: '#/components/schemas/SortByDatasetColumn' - name: sort_by_desc in: query schema: @@ -5037,10 +5012,7 @@ paths: - name: sort_by in: query schema: - title: Sort By - allOf: - - $ref: '#/components/schemas/SessionSortableColumns' - default: start_time + $ref: '#/components/schemas/SessionSortableColumns' - name: sort_by_desc in: query schema: @@ -5478,10 +5450,7 @@ paths: - name: sort_by in: query schema: - title: Sort By - allOf: - - $ref: '#/components/schemas/SortByComparativeExperimentColumn' - default: created_at + $ref: '#/components/schemas/SortByComparativeExperimentColumn' - name: sort_by_desc in: query schema: @@ -10366,9 +10335,7 @@ components: - ttl_seconds - trace_upgrade order: - allOf: - - $ref: '#/components/schemas/RunDateOrder' - default: desc + $ref: '#/components/schemas/RunDateOrder' description: Query params for run endpoints. Body_clone_dataset_api_v1_datasets_clone_post: title: Body_clone_dataset_api_v1_datasets_clone_post @@ -10456,9 +10423,7 @@ components: - type: string - type: 'null' data_type: - allOf: - - $ref: '#/components/schemas/DataType' - default: kv + $ref: '#/components/schemas/DataType' output_keys: title: Output Keys type: array @@ -11309,12 +11274,7 @@ components: format: date-time - type: 'null' stride: - allOf: - - $ref: '#/components/schemas/TimedeltaInput' - default: - days: 0 - minutes: 15 - hours: 0 + $ref: '#/components/schemas/TimedeltaInput' after_index: title: After Index anyOf: @@ -11349,12 +11309,7 @@ components: format: date-time - type: 'null' stride: - allOf: - - $ref: '#/components/schemas/TimedeltaInput' - default: - days: 0 - minutes: 15 - hours: 0 + $ref: '#/components/schemas/TimedeltaInput' CustomChartsResponse: title: CustomChartsResponse required: @@ -11631,9 +11586,7 @@ components: - type: object - type: 'null' data_type: - allOf: - - $ref: '#/components/schemas/DataType' - default: kv + $ref: '#/components/schemas/DataType' description: Create class for Dataset. DatasetDiffInfo: title: DatasetDiffInfo @@ -13257,9 +13210,7 @@ components: - type: string - type: 'null' access_scope: - allOf: - - $ref: '#/components/schemas/AccessScope' - default: workspace + $ref: '#/components/schemas/AccessScope' IdentityAnnotationQueueRunStatusCreateSchema: title: IdentityAnnotationQueueRunStatusCreateSchema type: object @@ -13555,9 +13506,7 @@ components: - type: string - type: 'null' access_scope: - allOf: - - $ref: '#/components/schemas/AccessScope' - default: workspace + $ref: '#/components/schemas/AccessScope' email: title: Email anyOf: @@ -13793,19 +13742,9 @@ components: items: $ref: '#/components/schemas/MonitorGroupSpec' interval: - allOf: - - $ref: '#/components/schemas/TimedeltaInput' - default: - days: 7 - minutes: 0 - hours: 0 + $ref: '#/components/schemas/TimedeltaInput' stride: - allOf: - - $ref: '#/components/schemas/TimedeltaInput' - default: - days: 0 - minutes: 15 - hours: 0 + $ref: '#/components/schemas/TimedeltaInput' MonitorResponse: title: MonitorResponse required: @@ -13957,9 +13896,7 @@ components: - type: string - type: 'null' access_scope: - allOf: - - $ref: '#/components/schemas/AccessScope' - default: workspace + $ref: '#/components/schemas/AccessScope' email: title: Email anyOf: @@ -14027,9 +13964,7 @@ components: - type: string - type: 'null' access_scope: - allOf: - - $ref: '#/components/schemas/AccessScope' - default: workspace + $ref: '#/components/schemas/AccessScope' id: title: Id type: string @@ -14504,9 +14439,7 @@ components: - type: string - type: 'null' access_scope: - allOf: - - $ref: '#/components/schemas/AccessScope' - default: workspace + $ref: '#/components/schemas/AccessScope' id: title: Id type: string @@ -14629,6 +14562,11 @@ components: - type: array items: { } - type: 'null' + tool_choice: + title: Tool Choice + anyOf: + - type: string + - type: 'null' options: $ref: '#/components/schemas/RunnableConfig' project_name: @@ -14672,6 +14610,11 @@ components: - type: array items: { } - type: 'null' + tool_choice: + title: Tool Choice + anyOf: + - type: string + - type: 'null' options: $ref: '#/components/schemas/RunnableConfig' project_name: @@ -14719,6 +14662,11 @@ components: - type: array items: { } - type: 'null' + tool_choice: + title: Tool Choice + anyOf: + - type: string + - type: 'null' options: $ref: '#/components/schemas/RunnableConfig' project_name: @@ -14820,6 +14768,11 @@ components: - type: array items: { } - type: 'null' + tool_choice: + title: Tool Choice + anyOf: + - type: string + - type: 'null' options: $ref: '#/components/schemas/RunnableConfig' project_name: