Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,24 @@ partial void ProcessFeedbackCreateFeedbackCreatePostResponseContent(
/// <param name="queueId">
/// The annotation queue ID this feedback was created from. References annotation_queues.id. NULL when feedback is created outside of queues.
/// </param>
/// <param name="scorerTags">
/// Tags applied to the ref by a scorer
/// </param>
/// <param name="scorerTagReasons">
/// reason text per tag, keyed by tag name
/// </param>
/// <param name="scorerTagConfidences">
/// confidence (0-1) per tag, keyed by tag name
/// </param>
/// <param name="scorerRatings">
/// numeric ratings (0-1) keyed by rating name
/// </param>
/// <param name="scorerRatingReasons">
/// reason text per rating, keyed by rating name
/// </param>
/// <param name="scorerRatingConfidences">
/// confidence (0-1) per rating, keyed by rating name
/// </param>
/// <param name="wbUserId">
/// Do not set directly. Server will automatically populate this field.
/// </param>
Expand All @@ -507,6 +525,12 @@ partial void ProcessFeedbackCreateFeedbackCreatePostResponseContent(
string? callRef = default,
string? triggerRef = default,
string? queueId = default,
global::System.Collections.Generic.IList<string>? scorerTags = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerTagReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerTagConfidences = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatings = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerRatingReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatingConfidences = default,
string? wbUserId = default,
global::Weave.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
Expand All @@ -524,6 +548,12 @@ partial void ProcessFeedbackCreateFeedbackCreatePostResponseContent(
CallRef = callRef,
TriggerRef = triggerRef,
QueueId = queueId,
ScorerTags = scorerTags,
ScorerTagReasons = scorerTagReasons,
ScorerTagConfidences = scorerTagConfidences,
ScorerRatings = scorerRatings,
ScorerRatingReasons = scorerRatingReasons,
ScorerRatingConfidences = scorerRatingConfidences,
WbUserId = wbUserId,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,24 @@ partial void ProcessFeedbackReplaceFeedbackReplacePostResponseContent(
/// <param name="queueId">
/// The annotation queue ID this feedback was created from. References annotation_queues.id. NULL when feedback is created outside of queues.
/// </param>
/// <param name="scorerTags">
/// Tags applied to the ref by a scorer
/// </param>
/// <param name="scorerTagReasons">
/// reason text per tag, keyed by tag name
/// </param>
/// <param name="scorerTagConfidences">
/// confidence (0-1) per tag, keyed by tag name
/// </param>
/// <param name="scorerRatings">
/// numeric ratings (0-1) keyed by rating name
/// </param>
/// <param name="scorerRatingReasons">
/// reason text per rating, keyed by rating name
/// </param>
/// <param name="scorerRatingConfidences">
/// confidence (0-1) per rating, keyed by rating name
/// </param>
/// <param name="wbUserId">
/// Do not set directly. Server will automatically populate this field.
/// </param>
Expand All @@ -506,6 +524,12 @@ partial void ProcessFeedbackReplaceFeedbackReplacePostResponseContent(
string? callRef = default,
string? triggerRef = default,
string? queueId = default,
global::System.Collections.Generic.IList<string>? scorerTags = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerTagReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerTagConfidences = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatings = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerRatingReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatingConfidences = default,
string? wbUserId = default,
global::Weave.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
Expand All @@ -523,6 +547,12 @@ partial void ProcessFeedbackReplaceFeedbackReplacePostResponseContent(
CallRef = callRef,
TriggerRef = triggerRef,
QueueId = queueId,
ScorerTags = scorerTags,
ScorerTagReasons = scorerTagReasons,
ScorerTagConfidences = scorerTagConfidences,
ScorerRatings = scorerRatings,
ScorerRatingReasons = scorerRatingReasons,
ScorerRatingConfidences = scorerRatingConfidences,
WbUserId = wbUserId,
FeedbackId = feedbackId,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@ public partial interface IFeedbackClient
/// <param name="queueId">
/// The annotation queue ID this feedback was created from. References annotation_queues.id. NULL when feedback is created outside of queues.
/// </param>
/// <param name="scorerTags">
/// Tags applied to the ref by a scorer
/// </param>
/// <param name="scorerTagReasons">
/// reason text per tag, keyed by tag name
/// </param>
/// <param name="scorerTagConfidences">
/// confidence (0-1) per tag, keyed by tag name
/// </param>
/// <param name="scorerRatings">
/// numeric ratings (0-1) keyed by rating name
/// </param>
/// <param name="scorerRatingReasons">
/// reason text per rating, keyed by rating name
/// </param>
/// <param name="scorerRatingConfidences">
/// confidence (0-1) per rating, keyed by rating name
/// </param>
/// <param name="wbUserId">
/// Do not set directly. Server will automatically populate this field.
/// </param>
Expand All @@ -67,6 +85,12 @@ public partial interface IFeedbackClient
string? callRef = default,
string? triggerRef = default,
string? queueId = default,
global::System.Collections.Generic.IList<string>? scorerTags = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerTagReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerTagConfidences = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatings = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerRatingReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatingConfidences = default,
string? wbUserId = default,
global::Weave.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,24 @@ public partial interface IFeedbackClient
/// <param name="queueId">
/// The annotation queue ID this feedback was created from. References annotation_queues.id. NULL when feedback is created outside of queues.
/// </param>
/// <param name="scorerTags">
/// Tags applied to the ref by a scorer
/// </param>
/// <param name="scorerTagReasons">
/// reason text per tag, keyed by tag name
/// </param>
/// <param name="scorerTagConfidences">
/// confidence (0-1) per tag, keyed by tag name
/// </param>
/// <param name="scorerRatings">
/// numeric ratings (0-1) keyed by rating name
/// </param>
/// <param name="scorerRatingReasons">
/// reason text per rating, keyed by rating name
/// </param>
/// <param name="scorerRatingConfidences">
/// confidence (0-1) per rating, keyed by rating name
/// </param>
/// <param name="wbUserId">
/// Do not set directly. Server will automatically populate this field.
/// </param>
Expand All @@ -66,6 +84,12 @@ public partial interface IFeedbackClient
string? callRef = default,
string? triggerRef = default,
string? queueId = default,
global::System.Collections.Generic.IList<string>? scorerTags = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerTagReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerTagConfidences = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatings = default,
global::System.Collections.Generic.Dictionary<string, string>? scorerRatingReasons = default,
global::System.Collections.Generic.Dictionary<string, double>? scorerRatingConfidences = default,
string? wbUserId = default,
global::Weave.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
Expand Down
1 change: 1 addition & 0 deletions src/libs/Weave/Generated/Weave.JsonSerializerContext.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ namespace Weave
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Weave.FeedbackCreateBatchRes))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList<global::Weave.FeedbackCreateRes>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Weave.FeedbackCreateRes))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary<string, double>))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Weave.FeedbackMetricSpec))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Weave.FeedbackMetricSpecValueType), TypeInfoPropertyName = "FeedbackMetricSpecValueType2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Weave.FeedbackPayloadPath))]
Expand Down
Loading