1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
|
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="discoveryengine_v1beta.html">Discovery Engine API</a> . <a href="discoveryengine_v1beta.projects.html">projects</a> . <a href="discoveryengine_v1beta.projects.locations.html">locations</a> . <a href="discoveryengine_v1beta.projects.locations.collections.html">collections</a> . <a href="discoveryengine_v1beta.projects.locations.collections.engines.html">engines</a> . <a href="discoveryengine_v1beta.projects.locations.collections.engines.conversations.html">conversations</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#converse">converse(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Converses a conversation.</p>
<p class="toc_element">
<code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates a Conversation. If the Conversation to create already exists, an ALREADY_EXISTS error is returned.</p>
<p class="toc_element">
<code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a Conversation. If the Conversation to delete does not exist, a NOT_FOUND error is returned.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Gets a Conversation.</p>
<p class="toc_element">
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists all Conversations by their parent DataStore.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
<code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates a Conversation. Conversation action type cannot be changed. If the Conversation to update does not exist, a NOT_FOUND error is returned.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="converse">converse(name, body=None, x__xgafv=None)</code>
<pre>Converses a conversation.
Args:
name: string, Required. The resource name of the Conversation to get. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}/conversations/{conversation_id}`. Use `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}/conversations/-` to activate auto session mode, which automatically creates a new conversation inside a ConverseConversation session. (required)
body: object, The request body.
The object takes the form of:
{ # Request message for ConversationalSearchService.ConverseConversation method.
"boostSpec": { # Boost specification to boost certain documents. # Boost specification to boost certain documents in search results which may affect the converse response. For more information on boosting, see [Boosting](https://cloud.google.com/retail/docs/boosting#boost)
"conditionBoostSpecs": [ # Condition boost specifications. If a document matches multiple conditions in the specifications, boost scores from these specifications are all applied and combined in a non-linear way. Maximum number of specifications is 20.
{ # Boost applies to documents which match a condition.
"boost": 3.14, # Strength of the condition boost, which should be in [-1, 1]. Negative boost means demotion. Default is 0.0. Setting to 1.0 gives the document a big promotion. However, it does not necessarily mean that the boosted document will be the top result at all times, nor that other documents will be excluded. Results could still be shown even when none of them matches the condition. And results that are significantly more relevant to the search query can still trump your heavily favored but irrelevant documents. Setting to -1.0 gives the document a big demotion. However, results that are deeply relevant might still be shown. The document will have an upstream battle to get a fairly high ranking, but it is not blocked out completely. Setting to 0.0 means no boost applied. The boosting condition is ignored. Only one of the (condition, boost) combination or the boost_control_spec below are set. If both are set then the global boost is ignored and the more fine-grained boost_control_spec is applied.
"boostControlSpec": { # Specification for custom ranking based on customer specified attribute value. It provides more controls for customized ranking than the simple (condition, boost) combination above. # Complex specification for custom ranking based on customer defined attribute value.
"attributeType": "A String", # The attribute type to be used to determine the boost amount. The attribute value can be derived from the field value of the specified field_name. In the case of numerical it is straightforward i.e. attribute_value = numerical_field_value. In the case of freshness however, attribute_value = (time.now() - datetime_field_value).
"controlPoints": [ # The control points used to define the curve. The monotonic function (defined through the interpolation_type above) passes through the control points listed here.
{ # The control points used to define the curve. The curve defined through these control points can only be monotonically increasing or decreasing(constant values are acceptable).
"attributeValue": "A String", # Can be one of: 1. The numerical field value. 2. The duration spec for freshness: The value must be formatted as an XSD `dayTimeDuration` value (a restricted subset of an ISO 8601 duration value). The pattern for this is: `nDnM]`.
"boostAmount": 3.14, # The value between -1 to 1 by which to boost the score if the attribute_value evaluates to the value specified above.
},
],
"fieldName": "A String", # The name of the field whose value will be used to determine the boost amount.
"interpolationType": "A String", # The interpolation type to be applied to connect the control points listed below.
},
"condition": "A String", # An expression which specifies a boost condition. The syntax and supported fields are the same as a filter expression. See SearchRequest.filter for detail syntax and limitations. Examples: * To boost documents with document ID "doc_1" or "doc_2", and color "Red" or "Blue": `(document_id: ANY("doc_1", "doc_2")) AND (color: ANY("Red", "Blue"))`
},
],
},
"conversation": { # External conversation proto definition. # The conversation to be used by auto session only. The name field will be ignored as we automatically assign new name for the conversation in auto session.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
},
"filter": "A String", # The filter syntax consists of an expression language for constructing a predicate from one or more fields of the documents being filtered. Filter expression is case-sensitive. This will be used to filter search results which may affect the summary response. If this field is unrecognizable, an `INVALID_ARGUMENT` is returned. Filtering in Vertex AI Search is done by mapping the LHS filter key to a key property defined in the Vertex AI Search backend -- this mapping is defined by the customer in their schema. For example a media customer might have a field 'name' in their schema. In this case the filter would look like this: filter --> name:'ANY("king kong")' For more information about filtering including syntax and filter operators, see [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
"query": { # Defines text input. # Required. Current user input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
"safeSearch": True or False, # Whether to turn on safe search.
"servingConfig": "A String", # The resource name of the Serving Config to use. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}/servingConfigs/{serving_config_id}` If this is not set, the default serving config will be used.
"summarySpec": { # A specification for configuring a summary returned in a search response. # A specification for configuring the summary returned in the response.
"ignoreAdversarialQuery": True or False, # Specifies whether to filter out adversarial queries. The default value is `false`. Google employs search-query classification to detect adversarial queries. No summary is returned if the search query is classified as an adversarial query. For example, a user might ask a question regarding negative comments about the company or submit a query designed to generate unsafe, policy-violating output. If this field is set to `true`, we skip generating summaries for adversarial queries and return fallback messages instead.
"ignoreJailBreakingQuery": True or False, # Optional. Specifies whether to filter out jail-breaking queries. The default value is `false`. Google employs search-query classification to detect jail-breaking queries. No summary is returned if the search query is classified as a jail-breaking query. A user might add instructions to the query to change the tone, style, language, content of the answer, or ask the model to act as a different entity, e.g. "Reply in the tone of a competing company's CEO". If this field is set to `true`, we skip generating summaries for jail-breaking queries and return fallback messages instead.
"ignoreLowRelevantContent": True or False, # Specifies whether to filter out queries that have low relevance. The default value is `false`. If this field is set to `false`, all search results are used regardless of relevance to generate answers. If set to `true`, only queries with high relevance search results will generate answers.
"ignoreNonSummarySeekingQuery": True or False, # Specifies whether to filter out queries that are not summary-seeking. The default value is `false`. Google employs search-query classification to detect summary-seeking queries. No summary is returned if the search query is classified as a non-summary seeking query. For example, `why is the sky blue` and `Who is the best soccer player in the world?` are summary-seeking queries, but `SFO airport` and `world cup 2026` are not. They are most likely navigational queries. If this field is set to `true`, we skip generating summaries for non-summary seeking queries and return fallback messages instead.
"includeCitations": True or False, # Specifies whether to include citations in the summary. The default value is `false`. When this field is set to `true`, summaries include in-line citation numbers. Example summary including citations: BigQuery is Google Cloud's fully managed and completely serverless enterprise data warehouse [1]. BigQuery supports all data types, works across clouds, and has built-in machine learning and business intelligence, all within a unified platform [2, 3]. The citation numbers refer to the returned search results and are 1-indexed. For example, [1] means that the sentence is attributed to the first search result. [2, 3] means that the sentence is attributed to both the second and third search results.
"languageCode": "A String", # Language code for Summary. Use language tags defined by [BCP47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt). Note: This is an experimental feature.
"modelPromptSpec": { # Specification of the prompt to use with the model. # If specified, the spec will be used to modify the prompt provided to the LLM.
"preamble": "A String", # Text at the beginning of the prompt that instructs the assistant. Examples are available in the user guide.
},
"modelSpec": { # Specification of the model. # If specified, the spec will be used to modify the model specification provided to the LLM.
"version": "A String", # The model version used to generate the summary. Supported values are: * `stable`: string. Default value when no value is specified. Uses a generally available, fine-tuned model. For more information, see [Answer generation model versions and lifecycle](https://cloud.google.com/generative-ai-app-builder/docs/answer-generation-models). * `preview`: string. (Public preview) Uses a preview model. For more information, see [Answer generation model versions and lifecycle](https://cloud.google.com/generative-ai-app-builder/docs/answer-generation-models).
},
"multimodalSpec": { # Multimodal specification: Will return an image from specified source. If multiple sources are specified, the pick is a quality based decision. # Optional. Multimodal specification.
"imageSource": "A String", # Optional. Source of image returned in the answer.
},
"summaryResultCount": 42, # The number of top results to generate the summary from. If the number of results returned is less than `summaryResultCount`, the summary is generated from all of the results. At most 10 results for documents mode, or 50 for chunks mode, can be used to generate a summary. The chunks mode is used when SearchRequest.ContentSearchSpec.search_result_mode is set to CHUNKS.
"useSemanticChunks": True or False, # If true, answer will be generated from most relevant chunks from top search results. This feature will improve summary quality. Note that with this feature enabled, not all top search results will be referenced and included in the reference list, so the citation source index only points to the search results listed in the reference list.
},
"userLabels": { # The user labels applied to a resource must meet the following requirements: * Each resource can have multiple labels, up to a maximum of 64. * Each label must be a key-value pair. * Keys have a minimum length of 1 character and a maximum length of 63 characters and cannot be empty. Values can be empty and have a maximum length of 63 characters. * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. * The key portion of a label must be unique. However, you can use the same key with multiple resources. * Keys must start with a lowercase letter or international character. See [Google Cloud Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements) for more details.
"a_key": "A String",
},
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response message for ConversationalSearchService.ConverseConversation method.
"conversation": { # External conversation proto definition. # Updated conversation including the answer.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
},
"relatedQuestions": [ # Suggested related questions.
"A String",
],
"reply": { # Defines a reply message to user. # Answer to the current query.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"searchResults": [ # Search Results.
{ # Represents the search results.
"chunk": { # Chunk captures all raw metadata information of items to be recommended or searched in the chunk mode. # The chunk data in the search response if the SearchRequest.ContentSearchSpec.search_result_mode is set to CHUNKS.
"annotationContents": [ # Output only. Annotation contents if the current chunk contains annotations.
"A String",
],
"annotationMetadata": [ # Output only. The annotation metadata includes structured content in the current chunk.
{ # The annotation metadata includes structured content in the current chunk.
"imageId": "A String", # Output only. Image id is provided if the structured content is based on an image.
"structuredContent": { # The structured content information. # Output only. The structured content information.
"content": "A String", # Output only. The content of the structured content.
"structureType": "A String", # Output only. The structure type of the structured content.
},
},
],
"chunkMetadata": { # Metadata of the current chunk. This field is only populated on SearchService.Search API. # Output only. Metadata of the current chunk.
"nextChunks": [ # The next chunks of the current chunk. The number is controlled by SearchRequest.ContentSearchSpec.ChunkSpec.num_next_chunks. This field is only populated on SearchService.Search API.
# Object with schema name: GoogleCloudDiscoveryengineV1betaChunk
],
"previousChunks": [ # The previous chunks of the current chunk. The number is controlled by SearchRequest.ContentSearchSpec.ChunkSpec.num_previous_chunks. This field is only populated on SearchService.Search API.
# Object with schema name: GoogleCloudDiscoveryengineV1betaChunk
],
},
"content": "A String", # Content is a string from a document (parsed content).
"dataUrls": [ # Output only. Image Data URLs if the current chunk contains images. Data URLs are composed of four parts: a prefix (data:), a MIME type indicating the type of data, an optional base64 token if non-textual, and the data itself: data:,
"A String",
],
"derivedStructData": { # Output only. This field is OUTPUT_ONLY. It contains derived data that are not in the original input document.
"a_key": "", # Properties of the object.
},
"documentMetadata": { # Document metadata contains the information of the document of the current chunk. # Metadata of the document from the current chunk.
"mimeType": "A String", # The mime type of the document. https://www.iana.org/assignments/media-types/media-types.xhtml.
"structData": { # Data representation. The structured JSON data for the document. It should conform to the registered Schema or an `INVALID_ARGUMENT` error is thrown.
"a_key": "", # Properties of the object.
},
"title": "A String", # Title of the document.
"uri": "A String", # Uri of the document.
},
"id": "A String", # Unique chunk ID of the current chunk.
"name": "A String", # The full resource name of the chunk. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document_id}/chunks/{chunk_id}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters.
"pageSpan": { # Page span of the chunk. # Page span of the chunk.
"pageEnd": 42, # The end page of the chunk.
"pageStart": 42, # The start page of the chunk.
},
"relevanceScore": 3.14, # Output only. Represents the relevance score based on similarity. Higher score indicates higher chunk relevance. The score is in range [-1.0, 1.0]. Only populated on SearchResponse.
},
"document": { # Document captures all raw metadata information of items to be recommended or searched. # The document data snippet in the search response. Only fields that are marked as `retrievable` are populated.
"aclInfo": { # ACL Information of the Document. # Access control information for the document.
"readers": [ # Readers of the document.
{ # AclRestriction to model complex inheritance restrictions. Example: Modeling a "Both Permit" inheritance, where to access a child document, user needs to have access to parent document. Document Hierarchy - Space_S --> Page_P. Readers: Space_S: group_1, user_1 Page_P: group_2, group_3, user_2 Space_S ACL Restriction - { "acl_info": { "readers": [ { "principals": [ { "group_id": "group_1" }, { "user_id": "user_1" } ] } ] } } Page_P ACL Restriction. { "acl_info": { "readers": [ { "principals": [ { "group_id": "group_2" }, { "group_id": "group_3" }, { "user_id": "user_2" } ], }, { "principals": [ { "group_id": "group_1" }, { "user_id": "user_1" } ], } ] } }
"idpWide": True or False, # All users within the Identity Provider.
"principals": [ # List of principals.
{ # Principal identifier of a user or a group.
"externalEntityId": "A String", # For 3P application identities which are not present in the customer identity provider.
"groupId": "A String", # Group identifier. For Google Workspace user account, group_id should be the google workspace group email. For non-google identity provider user account, group_id is the mapped group identifier configured during the workforcepool config.
"userId": "A String", # User identifier. For Google Workspace user account, user_id should be the google workspace user email. For non-google identity provider user account, user_id is the mapped user identifier configured during the workforcepool config.
},
],
},
],
},
"content": { # Unstructured data linked to this document. # The unstructured data linked to this document. Content can only be set and must be set if this document is under a `CONTENT_REQUIRED` data store.
"mimeType": "A String", # The MIME type of the content. Supported types: * `application/pdf` (PDF, only native PDFs are supported for now) * `text/html` (HTML) * `text/plain` (TXT) * `application/xml` or `text/xml` (XML) * `application/json` (JSON) * `application/vnd.openxmlformats-officedocument.wordprocessingml.document` (DOCX) * `application/vnd.openxmlformats-officedocument.presentationml.presentation` (PPTX) * `application/vnd.openxmlformats-officedocument.spreadsheetml.sheet` (XLSX) * `application/vnd.ms-excel.sheet.macroenabled.12` (XLSM) The following types are supported only if layout parser is enabled in the data store: * `image/bmp` (BMP) * `image/gif` (GIF) * `image/jpeg` (JPEG) * `image/png` (PNG) * `image/tiff` (TIFF) See https://www.iana.org/assignments/media-types/media-types.xhtml.
"rawBytes": "A String", # The content represented as a stream of bytes. The maximum length is 1,000,000 bytes (1 MB / ~0.95 MiB). Note: As with all `bytes` fields, this field is represented as pure binary in Protocol Buffers and base64-encoded string in JSON. For example, `abc123!?$*&()'-=@~` should be represented as `YWJjMTIzIT8kKiYoKSctPUB+` in JSON. See https://developers.google.com/protocol-buffers/docs/proto3#json.
"uri": "A String", # The URI of the content. Only Cloud Storage URIs (e.g. `gs://bucket-name/path/to/file`) are supported. The maximum file size is 2.5 MB for text-based formats, 200 MB for other formats.
},
"derivedStructData": { # Output only. This field is OUTPUT_ONLY. It contains derived data that are not in the original input document.
"a_key": "", # Properties of the object.
},
"id": "A String", # Immutable. The identifier of the document. Id should conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a length limit of 128 characters.
"indexStatus": { # Index status of the document. # Output only. The index status of the document. * If document is indexed successfully, the index_time field is populated. * Otherwise, if document is not indexed due to errors, the error_samples field is populated. * Otherwise, if document's index is in progress, the pending_message field is populated.
"errorSamples": [ # A sample of errors encountered while indexing the document. If this field is populated, the document is not indexed due to errors.
{ # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
"code": 42, # The status code, which should be an enum value of google.rpc.Code.
"details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
],
"message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
],
"indexTime": "A String", # The time when the document was indexed. If this field is populated, it means the document has been indexed.
"pendingMessage": "A String", # Immutable. The message indicates the document index is in progress. If this field is populated, the document index is pending.
},
"indexTime": "A String", # Output only. The last time the document was indexed. If this field is set, the document could be returned in search results. This field is OUTPUT_ONLY. If this field is not populated, it means the document has never been indexed.
"jsonData": "A String", # The JSON string representation of the document. It should conform to the registered Schema or an `INVALID_ARGUMENT` error is thrown.
"name": "A String", # Immutable. The full resource name of the document. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document_id}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters.
"parentDocumentId": "A String", # The identifier of the parent document. Currently supports at most two level document hierarchy. Id should conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a length limit of 63 characters.
"schemaId": "A String", # The identifier of the schema located in the same data store.
"structData": { # The structured JSON data for the document. It should conform to the registered Schema or an `INVALID_ARGUMENT` error is thrown.
"a_key": "", # Properties of the object.
},
},
"id": "A String", # Document.id of the searched Document.
"modelScores": { # Output only. Google provided available scores.
"a_key": { # Double list.
"values": [ # Double values.
3.14,
],
},
},
"rankSignals": { # A set of ranking signals. # Optional. A set of ranking signals associated with the result.
"boostingFactor": 3.14, # Optional. Combined custom boosts for a doc.
"customSignals": [ # Optional. A list of custom clearbox signals.
{ # Custom clearbox signal represented by name and value pair.
"name": "A String", # Optional. Name of the signal.
"value": 3.14, # Optional. Float value representing the ranking signal (e.g. 1.25 for BM25).
},
],
"defaultRank": 3.14, # Optional. The default rank of the result.
"documentAge": 3.14, # Optional. Age of the document in hours.
"keywordSimilarityScore": 3.14, # Optional. Keyword matching adjustment.
"pctrRank": 3.14, # Optional. Predicted conversion rate adjustment as a rank.
"relevanceScore": 3.14, # Optional. Semantic relevance adjustment.
"semanticSimilarityScore": 3.14, # Optional. Semantic similarity adjustment.
"topicalityRank": 3.14, # Optional. Topicality adjustment as a rank.
},
},
],
}</pre>
</div>
<div class="method">
<code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
<pre>Creates a Conversation. If the Conversation to create already exists, an ALREADY_EXISTS error is returned.
Args:
parent: string, Required. Full resource name of parent data store. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}` (required)
body: object, The request body.
The object takes the form of:
{ # External conversation proto definition.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # External conversation proto definition.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
}</pre>
</div>
<div class="method">
<code class="details" id="delete">delete(name, x__xgafv=None)</code>
<pre>Deletes a Conversation. If the Conversation to delete does not exist, a NOT_FOUND error is returned.
Args:
name: string, Required. The resource name of the Conversation to delete. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}/conversations/{conversation_id}` (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
}</pre>
</div>
<div class="method">
<code class="details" id="get">get(name, x__xgafv=None)</code>
<pre>Gets a Conversation.
Args:
name: string, Required. The resource name of the Conversation to get. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}/conversations/{conversation_id}` (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # External conversation proto definition.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Lists all Conversations by their parent DataStore.
Args:
parent: string, Required. The data store resource name. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store_id}` (required)
filter: string, A filter to apply on the list results. The supported features are: user_pseudo_id, state. Example: "user_pseudo_id = some_id"
orderBy: string, A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `update_time` * `create_time` * `conversation_name` Example: "update_time desc" "create_time"
pageSize: integer, Maximum number of results to return. If unspecified, defaults to 50. Max allowed value is 1000.
pageToken: string, A page token, received from a previous `ListConversations` call. Provide this to retrieve the subsequent page.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response for ListConversations method.
"conversations": [ # All the Conversations for a given data store.
{ # External conversation proto definition.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
},
],
"nextPageToken": "A String", # Pagination token, if not returned indicates the last page.
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call 'execute()' on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
<div class="method">
<code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
<pre>Updates a Conversation. Conversation action type cannot be changed. If the Conversation to update does not exist, a NOT_FOUND error is returned.
Args:
name: string, Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`. (required)
body: object, The request body.
The object takes the form of:
{ # External conversation proto definition.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
}
updateMask: string, Indicates which fields in the provided Conversation to update. The following are NOT supported: * Conversation.name If not set or empty, all supported fields are updated.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # External conversation proto definition.
"endTime": "A String", # Output only. The time the conversation finished.
"messages": [ # Conversation messages.
{ # Defines a conversation message.
"createTime": "A String", # Output only. Message creation timestamp.
"reply": { # Defines a reply message to user. # Search reply.
"references": [ # References in the reply.
{ # Defines reference in reply.
"anchorText": "A String", # Anchor text.
"end": 42, # Anchor text end index.
"start": 42, # Anchor text start index.
"uri": "A String", # URI link reference.
},
],
"reply": "A String", # DEPRECATED: use `summary` instead. Text reply.
"summary": { # Summary of the top N search results specified by the summary spec. # Summary based on search results.
"safetyAttributes": { # Safety Attribute categories and their associated confidence scores. # A collection of Safety Attribute categories and their associated confidence scores.
"categories": [ # The display names of Safety Attribute categories associated with the generated content. Order matches the Scores.
"A String",
],
"scores": [ # The confidence scores of the each category, higher value means higher confidence. Order matches the Categories.
3.14,
],
},
"summarySkippedReasons": [ # Additional summary-skipped reasons. This provides the reason for ignored cases. If nothing is skipped, this field is not set.
"A String",
],
"summaryText": "A String", # The summary content.
"summaryWithMetadata": { # Summary with metadata information. # Summary with metadata information.
"blobAttachments": [ # Output only. Store multimodal data for answer enhancement.
{ # Stores binarydata attached to text answer, e.g. image, video, audio, etc.
"attributionType": "A String", # Output only. The attribution type of the blob.
"data": { # Stores type and data of the blob. # Output only. The blob data.
"data": "A String", # Output only. Raw bytes.
"mimeType": "A String", # Output only. The media type (MIME type) of the generated data.
},
},
],
"citationMetadata": { # Citation metadata. # Citation metadata for given summary.
"citations": [ # Citations for segments.
{ # Citation info for a segment.
"endIndex": "A String", # End of the attributed segment, exclusive.
"sources": [ # Citation sources for the attributed segment.
{ # Citation source.
"referenceIndex": "A String", # Document reference index from SummaryWithMetadata.references. It is 0-indexed and the value will be zero if the reference_index is not set explicitly.
},
],
"startIndex": "A String", # Index indicates the start of the segment, measured in bytes/unicode.
},
],
},
"references": [ # Document References.
{ # Document reference.
"chunkContents": [ # List of cited chunk contents derived from document content.
{ # Chunk content.
"blobAttachmentIndexes": [ # Output only. Stores indexes of blobattachments linked to this chunk.
"A String",
],
"content": "A String", # Chunk textual content.
"pageIdentifier": "A String", # Page identifier.
},
],
"document": "A String", # Required. Document.name of the document. Full resource name of the referenced document, in the format `projects/*/locations/*/collections/*/dataStores/*/branches/*/documents/*`.
"title": "A String", # Title of the document.
"uri": "A String", # Cloud Storage or HTTP uri for the document.
},
],
"summary": "A String", # Summary text with no citation information.
},
},
},
"userInput": { # Defines text input. # User text input.
"context": { # Defines context of the conversation # Conversation context of the input.
"activeDocument": "A String", # The current active document the user opened. It contains the document resource reference.
"contextDocuments": [ # The current list of documents the user is seeing. It contains the document resource references.
"A String",
],
},
"input": "A String", # Text input.
},
},
],
"name": "A String", # Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/dataStore/*/conversations/*` or `projects/{project}/locations/global/collections/{collection}/engines/*/conversations/*`.
"startTime": "A String", # Output only. The time the conversation started.
"state": "A String", # The state of the Conversation.
"userPseudoId": "A String", # A unique identifier for tracking users.
}</pre>
</div>
</body></html>
|