@dailydotdev/schema 0.2.12 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -108,6 +108,55 @@ declare class PostDimensions extends Message<PostDimensions> {
108
108
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PostDimensions;
109
109
  static equals(a: PostDimensions | PlainMessage<PostDimensions> | undefined, b: PostDimensions | PlainMessage<PostDimensions> | undefined): boolean;
110
110
  }
111
+ /**
112
+ * @generated from message bragi.pipelines.PostDimensionsV2
113
+ */
114
+ declare class PostDimensionsV2 extends Message<PostDimensionsV2> {
115
+ /**
116
+ * Summary of the post
117
+ *
118
+ * @generated from field: string summary = 1;
119
+ */
120
+ summary: string;
121
+ /**
122
+ * List of tags/topics
123
+ *
124
+ * @generated from field: repeated bragi.pipelines.Tag tags = 2;
125
+ */
126
+ tags: Tag[];
127
+ /**
128
+ * List of followup questions a user may ask
129
+ *
130
+ * @generated from field: repeated string questions = 3;
131
+ */
132
+ questions: string[];
133
+ /**
134
+ * Type of content (news, story, opinion, etc)
135
+ *
136
+ * @generated from field: string content_curation = 4;
137
+ */
138
+ contentCuration: string;
139
+ /**
140
+ * Alternative title generated
141
+ *
142
+ * @generated from field: string alt_title = 5;
143
+ */
144
+ altTitle: string;
145
+ /**
146
+ * Target audience of the post
147
+ *
148
+ * @generated from field: string target_audience = 6;
149
+ */
150
+ targetAudience: string;
151
+ constructor(data?: PartialMessage<PostDimensionsV2>);
152
+ static readonly runtime: typeof proto3;
153
+ static readonly typeName = "bragi.pipelines.PostDimensionsV2";
154
+ static readonly fields: FieldList;
155
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PostDimensionsV2;
156
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PostDimensionsV2;
157
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PostDimensionsV2;
158
+ static equals(a: PostDimensionsV2 | PlainMessage<PostDimensionsV2> | undefined, b: PostDimensionsV2 | PlainMessage<PostDimensionsV2> | undefined): boolean;
159
+ }
111
160
  /**
112
161
  * @generated from message bragi.pipelines.EnrichResponse
113
162
  */
@@ -137,6 +186,35 @@ declare class EnrichResponse extends Message<EnrichResponse> {
137
186
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnrichResponse;
138
187
  static equals(a: EnrichResponse | PlainMessage<EnrichResponse> | undefined, b: EnrichResponse | PlainMessage<EnrichResponse> | undefined): boolean;
139
188
  }
189
+ /**
190
+ * @generated from message bragi.pipelines.EnrichResponseV2
191
+ */
192
+ declare class EnrichResponseV2 extends Message<EnrichResponseV2> {
193
+ /**
194
+ * Operation id
195
+ *
196
+ * @generated from field: string id = 1;
197
+ */
198
+ id: string;
199
+ /**
200
+ * Model used to enrich the post
201
+ *
202
+ * @generated from field: string model = 2;
203
+ */
204
+ model: string;
205
+ /**
206
+ * @generated from field: bragi.pipelines.PostDimensionsV2 dims = 3;
207
+ */
208
+ dims?: PostDimensionsV2;
209
+ constructor(data?: PartialMessage<EnrichResponseV2>);
210
+ static readonly runtime: typeof proto3;
211
+ static readonly typeName = "bragi.pipelines.EnrichResponseV2";
212
+ static readonly fields: FieldList;
213
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnrichResponseV2;
214
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnrichResponseV2;
215
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnrichResponseV2;
216
+ static equals(a: EnrichResponseV2 | PlainMessage<EnrichResponseV2> | undefined, b: EnrichResponseV2 | PlainMessage<EnrichResponseV2> | undefined): boolean;
217
+ }
140
218
  /**
141
219
  * @generated from message bragi.pipelines.SearchQueryRequest
142
220
  */
@@ -799,5 +877,242 @@ declare class GenerateTagsResponse extends Message<GenerateTagsResponse> {
799
877
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateTagsResponse;
800
878
  static equals(a: GenerateTagsResponse | PlainMessage<GenerateTagsResponse> | undefined, b: GenerateTagsResponse | PlainMessage<GenerateTagsResponse> | undefined): boolean;
801
879
  }
880
+ /**
881
+ * @generated from message bragi.pipelines.MemoryRequest
882
+ */
883
+ declare class MemoryRequest extends Message<MemoryRequest> {
884
+ /**
885
+ * Date of the memory (YYYY-MM-DD)
886
+ *
887
+ * @generated from field: string date = 1;
888
+ */
889
+ date: string;
890
+ /**
891
+ * Summary of the events
892
+ *
893
+ * @generated from field: string events_summary = 2;
894
+ */
895
+ eventsSummary: string;
896
+ constructor(data?: PartialMessage<MemoryRequest>);
897
+ static readonly runtime: typeof proto3;
898
+ static readonly typeName = "bragi.pipelines.MemoryRequest";
899
+ static readonly fields: FieldList;
900
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MemoryRequest;
901
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MemoryRequest;
902
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MemoryRequest;
903
+ static equals(a: MemoryRequest | PlainMessage<MemoryRequest> | undefined, b: MemoryRequest | PlainMessage<MemoryRequest> | undefined): boolean;
904
+ }
905
+ /**
906
+ * @generated from message bragi.pipelines.AggregateMemoryRequest
907
+ */
908
+ declare class AggregateMemoryRequest extends Message<AggregateMemoryRequest> {
909
+ /**
910
+ * Array of memories
911
+ *
912
+ * @generated from field: repeated bragi.pipelines.MemoryRequest memories = 1;
913
+ */
914
+ memories: MemoryRequest[];
915
+ constructor(data?: PartialMessage<AggregateMemoryRequest>);
916
+ static readonly runtime: typeof proto3;
917
+ static readonly typeName = "bragi.pipelines.AggregateMemoryRequest";
918
+ static readonly fields: FieldList;
919
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AggregateMemoryRequest;
920
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AggregateMemoryRequest;
921
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AggregateMemoryRequest;
922
+ static equals(a: AggregateMemoryRequest | PlainMessage<AggregateMemoryRequest> | undefined, b: AggregateMemoryRequest | PlainMessage<AggregateMemoryRequest> | undefined): boolean;
923
+ }
924
+ /**
925
+ * @generated from message bragi.pipelines.MemoryResponse
926
+ */
927
+ declare class MemoryResponse extends Message<MemoryResponse> {
928
+ /**
929
+ * Operation id
930
+ *
931
+ * @generated from field: string id = 1;
932
+ */
933
+ id: string;
934
+ /**
935
+ * Memory text
936
+ *
937
+ * @generated from field: string memory = 2;
938
+ */
939
+ memory: string;
940
+ constructor(data?: PartialMessage<MemoryResponse>);
941
+ static readonly runtime: typeof proto3;
942
+ static readonly typeName = "bragi.pipelines.MemoryResponse";
943
+ static readonly fields: FieldList;
944
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MemoryResponse;
945
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MemoryResponse;
946
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MemoryResponse;
947
+ static equals(a: MemoryResponse | PlainMessage<MemoryResponse> | undefined, b: MemoryResponse | PlainMessage<MemoryResponse> | undefined): boolean;
948
+ }
949
+ /**
950
+ * @generated from message bragi.pipelines.ProcessClusteredRequest
951
+ */
952
+ declare class ProcessClusteredRequest extends Message<ProcessClusteredRequest> {
953
+ /**
954
+ * @generated from field: string story_article_md = 1;
955
+ */
956
+ storyArticleMd: string;
957
+ constructor(data?: PartialMessage<ProcessClusteredRequest>);
958
+ static readonly runtime: typeof proto3;
959
+ static readonly typeName = "bragi.pipelines.ProcessClusteredRequest";
960
+ static readonly fields: FieldList;
961
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProcessClusteredRequest;
962
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProcessClusteredRequest;
963
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProcessClusteredRequest;
964
+ static equals(a: ProcessClusteredRequest | PlainMessage<ProcessClusteredRequest> | undefined, b: ProcessClusteredRequest | PlainMessage<ProcessClusteredRequest> | undefined): boolean;
965
+ }
966
+ /**
967
+ * @generated from message bragi.pipelines.ProcessIsolatedRequest
968
+ */
969
+ declare class ProcessIsolatedRequest extends Message<ProcessIsolatedRequest> {
970
+ /**
971
+ * @generated from field: string non_clustered_articles_md = 1;
972
+ */
973
+ nonClusteredArticlesMd: string;
974
+ constructor(data?: PartialMessage<ProcessIsolatedRequest>);
975
+ static readonly runtime: typeof proto3;
976
+ static readonly typeName = "bragi.pipelines.ProcessIsolatedRequest";
977
+ static readonly fields: FieldList;
978
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProcessIsolatedRequest;
979
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProcessIsolatedRequest;
980
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProcessIsolatedRequest;
981
+ static equals(a: ProcessIsolatedRequest | PlainMessage<ProcessIsolatedRequest> | undefined, b: ProcessIsolatedRequest | PlainMessage<ProcessIsolatedRequest> | undefined): boolean;
982
+ }
983
+ /**
984
+ * @generated from message bragi.pipelines.ClusterReconciliationRequest
985
+ */
986
+ declare class ClusterReconciliationRequest extends Message<ClusterReconciliationRequest> {
987
+ /**
988
+ * @generated from field: string clusters_md = 1;
989
+ */
990
+ clustersMd: string;
991
+ constructor(data?: PartialMessage<ClusterReconciliationRequest>);
992
+ static readonly runtime: typeof proto3;
993
+ static readonly typeName = "bragi.pipelines.ClusterReconciliationRequest";
994
+ static readonly fields: FieldList;
995
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClusterReconciliationRequest;
996
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClusterReconciliationRequest;
997
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClusterReconciliationRequest;
998
+ static equals(a: ClusterReconciliationRequest | PlainMessage<ClusterReconciliationRequest> | undefined, b: ClusterReconciliationRequest | PlainMessage<ClusterReconciliationRequest> | undefined): boolean;
999
+ }
1000
+ /**
1001
+ * @generated from message bragi.pipelines.StoryAnalysisRequest
1002
+ */
1003
+ declare class StoryAnalysisRequest extends Message<StoryAnalysisRequest> {
1004
+ /**
1005
+ * @generated from field: string story_article_md = 1;
1006
+ */
1007
+ storyArticleMd: string;
1008
+ constructor(data?: PartialMessage<StoryAnalysisRequest>);
1009
+ static readonly runtime: typeof proto3;
1010
+ static readonly typeName = "bragi.pipelines.StoryAnalysisRequest";
1011
+ static readonly fields: FieldList;
1012
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StoryAnalysisRequest;
1013
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StoryAnalysisRequest;
1014
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StoryAnalysisRequest;
1015
+ static equals(a: StoryAnalysisRequest | PlainMessage<StoryAnalysisRequest> | undefined, b: StoryAnalysisRequest | PlainMessage<StoryAnalysisRequest> | undefined): boolean;
1016
+ }
1017
+ /**
1018
+ * @generated from message bragi.pipelines.PersonalizedBriefingRequest
1019
+ */
1020
+ declare class PersonalizedBriefingRequest extends Message<PersonalizedBriefingRequest> {
1021
+ /**
1022
+ * @generated from field: string user_description = 1;
1023
+ */
1024
+ userDescription: string;
1025
+ /**
1026
+ * @generated from field: string curated_news = 2;
1027
+ */
1028
+ curatedNews: string;
1029
+ /**
1030
+ * @generated from field: string isolated_stories = 3;
1031
+ */
1032
+ isolatedStories: string;
1033
+ constructor(data?: PartialMessage<PersonalizedBriefingRequest>);
1034
+ static readonly runtime: typeof proto3;
1035
+ static readonly typeName = "bragi.pipelines.PersonalizedBriefingRequest";
1036
+ static readonly fields: FieldList;
1037
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PersonalizedBriefingRequest;
1038
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PersonalizedBriefingRequest;
1039
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PersonalizedBriefingRequest;
1040
+ static equals(a: PersonalizedBriefingRequest | PlainMessage<PersonalizedBriefingRequest> | undefined, b: PersonalizedBriefingRequest | PlainMessage<PersonalizedBriefingRequest> | undefined): boolean;
1041
+ }
1042
+ /**
1043
+ * @generated from message bragi.pipelines.ProcessStoriesResponse
1044
+ */
1045
+ declare class ProcessStoriesResponse extends Message<ProcessStoriesResponse> {
1046
+ /**
1047
+ * Operation id
1048
+ *
1049
+ * @generated from field: string id = 1;
1050
+ */
1051
+ id: string;
1052
+ /**
1053
+ * Array of processed stories
1054
+ *
1055
+ * @generated from field: repeated string processed_stories = 2;
1056
+ */
1057
+ processedStories: string[];
1058
+ constructor(data?: PartialMessage<ProcessStoriesResponse>);
1059
+ static readonly runtime: typeof proto3;
1060
+ static readonly typeName = "bragi.pipelines.ProcessStoriesResponse";
1061
+ static readonly fields: FieldList;
1062
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProcessStoriesResponse;
1063
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProcessStoriesResponse;
1064
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProcessStoriesResponse;
1065
+ static equals(a: ProcessStoriesResponse | PlainMessage<ProcessStoriesResponse> | undefined, b: ProcessStoriesResponse | PlainMessage<ProcessStoriesResponse> | undefined): boolean;
1066
+ }
1067
+ /**
1068
+ * @generated from message bragi.pipelines.BriefResponse
1069
+ */
1070
+ declare class BriefResponse extends Message<BriefResponse> {
1071
+ /**
1072
+ * Operation id
1073
+ *
1074
+ * @generated from field: string id = 1;
1075
+ */
1076
+ id: string;
1077
+ /**
1078
+ * analysis and brief text
1079
+ *
1080
+ * @generated from field: string brief = 2;
1081
+ */
1082
+ brief: string;
1083
+ constructor(data?: PartialMessage<BriefResponse>);
1084
+ static readonly runtime: typeof proto3;
1085
+ static readonly typeName = "bragi.pipelines.BriefResponse";
1086
+ static readonly fields: FieldList;
1087
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BriefResponse;
1088
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BriefResponse;
1089
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BriefResponse;
1090
+ static equals(a: BriefResponse | PlainMessage<BriefResponse> | undefined, b: BriefResponse | PlainMessage<BriefResponse> | undefined): boolean;
1091
+ }
1092
+ /**
1093
+ * @generated from message bragi.pipelines.ClusterReconciliationResponse
1094
+ */
1095
+ declare class ClusterReconciliationResponse extends Message<ClusterReconciliationResponse> {
1096
+ /**
1097
+ * Operation id
1098
+ *
1099
+ * @generated from field: string id = 1;
1100
+ */
1101
+ id: string;
1102
+ /**
1103
+ * Merge and delete cluster operations
1104
+ *
1105
+ * @generated from field: string cluster_operations = 2;
1106
+ */
1107
+ clusterOperations: string;
1108
+ constructor(data?: PartialMessage<ClusterReconciliationResponse>);
1109
+ static readonly runtime: typeof proto3;
1110
+ static readonly typeName = "bragi.pipelines.ClusterReconciliationResponse";
1111
+ static readonly fields: FieldList;
1112
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClusterReconciliationResponse;
1113
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClusterReconciliationResponse;
1114
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClusterReconciliationResponse;
1115
+ static equals(a: ClusterReconciliationResponse | PlainMessage<ClusterReconciliationResponse> | undefined, b: ClusterReconciliationResponse | PlainMessage<ClusterReconciliationResponse> | undefined): boolean;
1116
+ }
802
1117
 
803
- export { AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, AudienceFitRequest, AudienceFitResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, MultipleSearchQueriesResponse, PostDimensions, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, Tag };
1118
+ export { AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessClusteredRequest, ProcessIsolatedRequest, ProcessStoriesResponse, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, StoryAnalysisRequest, Tag };
@@ -108,6 +108,55 @@ declare class PostDimensions extends Message<PostDimensions> {
108
108
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PostDimensions;
109
109
  static equals(a: PostDimensions | PlainMessage<PostDimensions> | undefined, b: PostDimensions | PlainMessage<PostDimensions> | undefined): boolean;
110
110
  }
111
+ /**
112
+ * @generated from message bragi.pipelines.PostDimensionsV2
113
+ */
114
+ declare class PostDimensionsV2 extends Message<PostDimensionsV2> {
115
+ /**
116
+ * Summary of the post
117
+ *
118
+ * @generated from field: string summary = 1;
119
+ */
120
+ summary: string;
121
+ /**
122
+ * List of tags/topics
123
+ *
124
+ * @generated from field: repeated bragi.pipelines.Tag tags = 2;
125
+ */
126
+ tags: Tag[];
127
+ /**
128
+ * List of followup questions a user may ask
129
+ *
130
+ * @generated from field: repeated string questions = 3;
131
+ */
132
+ questions: string[];
133
+ /**
134
+ * Type of content (news, story, opinion, etc)
135
+ *
136
+ * @generated from field: string content_curation = 4;
137
+ */
138
+ contentCuration: string;
139
+ /**
140
+ * Alternative title generated
141
+ *
142
+ * @generated from field: string alt_title = 5;
143
+ */
144
+ altTitle: string;
145
+ /**
146
+ * Target audience of the post
147
+ *
148
+ * @generated from field: string target_audience = 6;
149
+ */
150
+ targetAudience: string;
151
+ constructor(data?: PartialMessage<PostDimensionsV2>);
152
+ static readonly runtime: typeof proto3;
153
+ static readonly typeName = "bragi.pipelines.PostDimensionsV2";
154
+ static readonly fields: FieldList;
155
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PostDimensionsV2;
156
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PostDimensionsV2;
157
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PostDimensionsV2;
158
+ static equals(a: PostDimensionsV2 | PlainMessage<PostDimensionsV2> | undefined, b: PostDimensionsV2 | PlainMessage<PostDimensionsV2> | undefined): boolean;
159
+ }
111
160
  /**
112
161
  * @generated from message bragi.pipelines.EnrichResponse
113
162
  */
@@ -137,6 +186,35 @@ declare class EnrichResponse extends Message<EnrichResponse> {
137
186
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnrichResponse;
138
187
  static equals(a: EnrichResponse | PlainMessage<EnrichResponse> | undefined, b: EnrichResponse | PlainMessage<EnrichResponse> | undefined): boolean;
139
188
  }
189
+ /**
190
+ * @generated from message bragi.pipelines.EnrichResponseV2
191
+ */
192
+ declare class EnrichResponseV2 extends Message<EnrichResponseV2> {
193
+ /**
194
+ * Operation id
195
+ *
196
+ * @generated from field: string id = 1;
197
+ */
198
+ id: string;
199
+ /**
200
+ * Model used to enrich the post
201
+ *
202
+ * @generated from field: string model = 2;
203
+ */
204
+ model: string;
205
+ /**
206
+ * @generated from field: bragi.pipelines.PostDimensionsV2 dims = 3;
207
+ */
208
+ dims?: PostDimensionsV2;
209
+ constructor(data?: PartialMessage<EnrichResponseV2>);
210
+ static readonly runtime: typeof proto3;
211
+ static readonly typeName = "bragi.pipelines.EnrichResponseV2";
212
+ static readonly fields: FieldList;
213
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnrichResponseV2;
214
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnrichResponseV2;
215
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnrichResponseV2;
216
+ static equals(a: EnrichResponseV2 | PlainMessage<EnrichResponseV2> | undefined, b: EnrichResponseV2 | PlainMessage<EnrichResponseV2> | undefined): boolean;
217
+ }
140
218
  /**
141
219
  * @generated from message bragi.pipelines.SearchQueryRequest
142
220
  */
@@ -799,5 +877,242 @@ declare class GenerateTagsResponse extends Message<GenerateTagsResponse> {
799
877
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateTagsResponse;
800
878
  static equals(a: GenerateTagsResponse | PlainMessage<GenerateTagsResponse> | undefined, b: GenerateTagsResponse | PlainMessage<GenerateTagsResponse> | undefined): boolean;
801
879
  }
880
+ /**
881
+ * @generated from message bragi.pipelines.MemoryRequest
882
+ */
883
+ declare class MemoryRequest extends Message<MemoryRequest> {
884
+ /**
885
+ * Date of the memory (YYYY-MM-DD)
886
+ *
887
+ * @generated from field: string date = 1;
888
+ */
889
+ date: string;
890
+ /**
891
+ * Summary of the events
892
+ *
893
+ * @generated from field: string events_summary = 2;
894
+ */
895
+ eventsSummary: string;
896
+ constructor(data?: PartialMessage<MemoryRequest>);
897
+ static readonly runtime: typeof proto3;
898
+ static readonly typeName = "bragi.pipelines.MemoryRequest";
899
+ static readonly fields: FieldList;
900
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MemoryRequest;
901
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MemoryRequest;
902
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MemoryRequest;
903
+ static equals(a: MemoryRequest | PlainMessage<MemoryRequest> | undefined, b: MemoryRequest | PlainMessage<MemoryRequest> | undefined): boolean;
904
+ }
905
+ /**
906
+ * @generated from message bragi.pipelines.AggregateMemoryRequest
907
+ */
908
+ declare class AggregateMemoryRequest extends Message<AggregateMemoryRequest> {
909
+ /**
910
+ * Array of memories
911
+ *
912
+ * @generated from field: repeated bragi.pipelines.MemoryRequest memories = 1;
913
+ */
914
+ memories: MemoryRequest[];
915
+ constructor(data?: PartialMessage<AggregateMemoryRequest>);
916
+ static readonly runtime: typeof proto3;
917
+ static readonly typeName = "bragi.pipelines.AggregateMemoryRequest";
918
+ static readonly fields: FieldList;
919
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AggregateMemoryRequest;
920
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AggregateMemoryRequest;
921
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AggregateMemoryRequest;
922
+ static equals(a: AggregateMemoryRequest | PlainMessage<AggregateMemoryRequest> | undefined, b: AggregateMemoryRequest | PlainMessage<AggregateMemoryRequest> | undefined): boolean;
923
+ }
924
+ /**
925
+ * @generated from message bragi.pipelines.MemoryResponse
926
+ */
927
+ declare class MemoryResponse extends Message<MemoryResponse> {
928
+ /**
929
+ * Operation id
930
+ *
931
+ * @generated from field: string id = 1;
932
+ */
933
+ id: string;
934
+ /**
935
+ * Memory text
936
+ *
937
+ * @generated from field: string memory = 2;
938
+ */
939
+ memory: string;
940
+ constructor(data?: PartialMessage<MemoryResponse>);
941
+ static readonly runtime: typeof proto3;
942
+ static readonly typeName = "bragi.pipelines.MemoryResponse";
943
+ static readonly fields: FieldList;
944
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MemoryResponse;
945
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MemoryResponse;
946
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MemoryResponse;
947
+ static equals(a: MemoryResponse | PlainMessage<MemoryResponse> | undefined, b: MemoryResponse | PlainMessage<MemoryResponse> | undefined): boolean;
948
+ }
949
+ /**
950
+ * @generated from message bragi.pipelines.ProcessClusteredRequest
951
+ */
952
+ declare class ProcessClusteredRequest extends Message<ProcessClusteredRequest> {
953
+ /**
954
+ * @generated from field: string story_article_md = 1;
955
+ */
956
+ storyArticleMd: string;
957
+ constructor(data?: PartialMessage<ProcessClusteredRequest>);
958
+ static readonly runtime: typeof proto3;
959
+ static readonly typeName = "bragi.pipelines.ProcessClusteredRequest";
960
+ static readonly fields: FieldList;
961
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProcessClusteredRequest;
962
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProcessClusteredRequest;
963
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProcessClusteredRequest;
964
+ static equals(a: ProcessClusteredRequest | PlainMessage<ProcessClusteredRequest> | undefined, b: ProcessClusteredRequest | PlainMessage<ProcessClusteredRequest> | undefined): boolean;
965
+ }
966
+ /**
967
+ * @generated from message bragi.pipelines.ProcessIsolatedRequest
968
+ */
969
+ declare class ProcessIsolatedRequest extends Message<ProcessIsolatedRequest> {
970
+ /**
971
+ * @generated from field: string non_clustered_articles_md = 1;
972
+ */
973
+ nonClusteredArticlesMd: string;
974
+ constructor(data?: PartialMessage<ProcessIsolatedRequest>);
975
+ static readonly runtime: typeof proto3;
976
+ static readonly typeName = "bragi.pipelines.ProcessIsolatedRequest";
977
+ static readonly fields: FieldList;
978
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProcessIsolatedRequest;
979
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProcessIsolatedRequest;
980
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProcessIsolatedRequest;
981
+ static equals(a: ProcessIsolatedRequest | PlainMessage<ProcessIsolatedRequest> | undefined, b: ProcessIsolatedRequest | PlainMessage<ProcessIsolatedRequest> | undefined): boolean;
982
+ }
983
+ /**
984
+ * @generated from message bragi.pipelines.ClusterReconciliationRequest
985
+ */
986
+ declare class ClusterReconciliationRequest extends Message<ClusterReconciliationRequest> {
987
+ /**
988
+ * @generated from field: string clusters_md = 1;
989
+ */
990
+ clustersMd: string;
991
+ constructor(data?: PartialMessage<ClusterReconciliationRequest>);
992
+ static readonly runtime: typeof proto3;
993
+ static readonly typeName = "bragi.pipelines.ClusterReconciliationRequest";
994
+ static readonly fields: FieldList;
995
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClusterReconciliationRequest;
996
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClusterReconciliationRequest;
997
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClusterReconciliationRequest;
998
+ static equals(a: ClusterReconciliationRequest | PlainMessage<ClusterReconciliationRequest> | undefined, b: ClusterReconciliationRequest | PlainMessage<ClusterReconciliationRequest> | undefined): boolean;
999
+ }
1000
+ /**
1001
+ * @generated from message bragi.pipelines.StoryAnalysisRequest
1002
+ */
1003
+ declare class StoryAnalysisRequest extends Message<StoryAnalysisRequest> {
1004
+ /**
1005
+ * @generated from field: string story_article_md = 1;
1006
+ */
1007
+ storyArticleMd: string;
1008
+ constructor(data?: PartialMessage<StoryAnalysisRequest>);
1009
+ static readonly runtime: typeof proto3;
1010
+ static readonly typeName = "bragi.pipelines.StoryAnalysisRequest";
1011
+ static readonly fields: FieldList;
1012
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StoryAnalysisRequest;
1013
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StoryAnalysisRequest;
1014
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StoryAnalysisRequest;
1015
+ static equals(a: StoryAnalysisRequest | PlainMessage<StoryAnalysisRequest> | undefined, b: StoryAnalysisRequest | PlainMessage<StoryAnalysisRequest> | undefined): boolean;
1016
+ }
1017
+ /**
1018
+ * @generated from message bragi.pipelines.PersonalizedBriefingRequest
1019
+ */
1020
+ declare class PersonalizedBriefingRequest extends Message<PersonalizedBriefingRequest> {
1021
+ /**
1022
+ * @generated from field: string user_description = 1;
1023
+ */
1024
+ userDescription: string;
1025
+ /**
1026
+ * @generated from field: string curated_news = 2;
1027
+ */
1028
+ curatedNews: string;
1029
+ /**
1030
+ * @generated from field: string isolated_stories = 3;
1031
+ */
1032
+ isolatedStories: string;
1033
+ constructor(data?: PartialMessage<PersonalizedBriefingRequest>);
1034
+ static readonly runtime: typeof proto3;
1035
+ static readonly typeName = "bragi.pipelines.PersonalizedBriefingRequest";
1036
+ static readonly fields: FieldList;
1037
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PersonalizedBriefingRequest;
1038
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PersonalizedBriefingRequest;
1039
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PersonalizedBriefingRequest;
1040
+ static equals(a: PersonalizedBriefingRequest | PlainMessage<PersonalizedBriefingRequest> | undefined, b: PersonalizedBriefingRequest | PlainMessage<PersonalizedBriefingRequest> | undefined): boolean;
1041
+ }
1042
+ /**
1043
+ * @generated from message bragi.pipelines.ProcessStoriesResponse
1044
+ */
1045
+ declare class ProcessStoriesResponse extends Message<ProcessStoriesResponse> {
1046
+ /**
1047
+ * Operation id
1048
+ *
1049
+ * @generated from field: string id = 1;
1050
+ */
1051
+ id: string;
1052
+ /**
1053
+ * Array of processed stories
1054
+ *
1055
+ * @generated from field: repeated string processed_stories = 2;
1056
+ */
1057
+ processedStories: string[];
1058
+ constructor(data?: PartialMessage<ProcessStoriesResponse>);
1059
+ static readonly runtime: typeof proto3;
1060
+ static readonly typeName = "bragi.pipelines.ProcessStoriesResponse";
1061
+ static readonly fields: FieldList;
1062
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProcessStoriesResponse;
1063
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProcessStoriesResponse;
1064
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProcessStoriesResponse;
1065
+ static equals(a: ProcessStoriesResponse | PlainMessage<ProcessStoriesResponse> | undefined, b: ProcessStoriesResponse | PlainMessage<ProcessStoriesResponse> | undefined): boolean;
1066
+ }
1067
+ /**
1068
+ * @generated from message bragi.pipelines.BriefResponse
1069
+ */
1070
+ declare class BriefResponse extends Message<BriefResponse> {
1071
+ /**
1072
+ * Operation id
1073
+ *
1074
+ * @generated from field: string id = 1;
1075
+ */
1076
+ id: string;
1077
+ /**
1078
+ * analysis and brief text
1079
+ *
1080
+ * @generated from field: string brief = 2;
1081
+ */
1082
+ brief: string;
1083
+ constructor(data?: PartialMessage<BriefResponse>);
1084
+ static readonly runtime: typeof proto3;
1085
+ static readonly typeName = "bragi.pipelines.BriefResponse";
1086
+ static readonly fields: FieldList;
1087
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BriefResponse;
1088
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BriefResponse;
1089
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BriefResponse;
1090
+ static equals(a: BriefResponse | PlainMessage<BriefResponse> | undefined, b: BriefResponse | PlainMessage<BriefResponse> | undefined): boolean;
1091
+ }
1092
+ /**
1093
+ * @generated from message bragi.pipelines.ClusterReconciliationResponse
1094
+ */
1095
+ declare class ClusterReconciliationResponse extends Message<ClusterReconciliationResponse> {
1096
+ /**
1097
+ * Operation id
1098
+ *
1099
+ * @generated from field: string id = 1;
1100
+ */
1101
+ id: string;
1102
+ /**
1103
+ * Merge and delete cluster operations
1104
+ *
1105
+ * @generated from field: string cluster_operations = 2;
1106
+ */
1107
+ clusterOperations: string;
1108
+ constructor(data?: PartialMessage<ClusterReconciliationResponse>);
1109
+ static readonly runtime: typeof proto3;
1110
+ static readonly typeName = "bragi.pipelines.ClusterReconciliationResponse";
1111
+ static readonly fields: FieldList;
1112
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClusterReconciliationResponse;
1113
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClusterReconciliationResponse;
1114
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClusterReconciliationResponse;
1115
+ static equals(a: ClusterReconciliationResponse | PlainMessage<ClusterReconciliationResponse> | undefined, b: ClusterReconciliationResponse | PlainMessage<ClusterReconciliationResponse> | undefined): boolean;
1116
+ }
802
1117
 
803
- export { AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, AudienceFitRequest, AudienceFitResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, MultipleSearchQueriesResponse, PostDimensions, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, Tag };
1118
+ export { AggregateMemoryRequest, AlternativeTitleRequest, AlternativeTitleResponse, AnalyzeImageRequest, AnalyzeImageResponse, AudienceFitRequest, AudienceFitResponse, BriefResponse, ClickbaitProbabilityRequest, ClickbaitProbabilityResponse, ClusterReconciliationRequest, ClusterReconciliationResponse, CollectionPostInput, ContentFormat, ContextBuildingStrategy, EnrichRequest, EnrichResponse, EnrichResponseV2, FilterSearchRequest, FilterSearchResponse, GenerateCollectionRequest, GenerateCollectionResponse, GenerateTagsResponse, IsPageInCacheRequest, IsPageInCacheResponse, MemoryRequest, MemoryResponse, MultipleSearchQueriesResponse, PersonalizedBriefingRequest, PostDimensions, PostDimensionsV2, ProcessClusteredRequest, ProcessIsolatedRequest, ProcessStoriesResponse, ScrapedPage, SearchAnswerRequest, SearchPromptRequest, SearchPromptResponse, SearchPromptV2Request, SearchQueryRequest, SearchQueryResponse, SmartPromptRequest, StoryAnalysisRequest, Tag };