static_prompt.proto 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.actions.sdk.v2.interactionmodel.prompt;
  16. import "google/actions/sdk/v2/interactionmodel/prompt/content/static_canvas_prompt.proto";
  17. import "google/actions/sdk/v2/interactionmodel/prompt/content/static_content_prompt.proto";
  18. import "google/actions/sdk/v2/interactionmodel/prompt/content/static_link_prompt.proto";
  19. import "google/actions/sdk/v2/interactionmodel/prompt/static_simple_prompt.proto";
  20. import "google/actions/sdk/v2/interactionmodel/prompt/suggestion.proto";
  21. import "google/actions/sdk/v2/interactionmodel/prompt/surface_capabilities.proto";
  22. import "google/api/field_behavior.proto";
  23. option go_package = "google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel/prompt;prompt";
  24. option java_multiple_files = true;
  25. option java_outer_classname = "StaticPromptProto";
  26. option java_package = "com.google.actions.sdk.v2.interactionmodel.prompt";
  27. // Represents a list of prompt candidates, one of which will be selected as the
  28. // prompt to be shown in the response to the user.
  29. // **This message is localizable.**
  30. message StaticPrompt {
  31. // Represents a static prompt candidate.
  32. message StaticPromptCandidate {
  33. // Represents structured responses to send to the user, such as text,
  34. // speech, cards, canvas data, suggestion chips, etc.
  35. message StaticPromptResponse {
  36. // Optional. The first voice and text-only response.
  37. StaticSimplePrompt first_simple = 2 [(google.api.field_behavior) = OPTIONAL];
  38. // Optional. A content like a card, list or media to display to the user.
  39. StaticContentPrompt content = 3 [(google.api.field_behavior) = OPTIONAL];
  40. // Optional. The last voice and text-only response.
  41. StaticSimplePrompt last_simple = 4 [(google.api.field_behavior) = OPTIONAL];
  42. // Optional. Suggestions to be displayed to the user which will always
  43. // appear at the end of the response. If the `append` field in the
  44. // containing prompt is `true` the titles defined in this field will be
  45. // added to titles defined in any previously defined suggestions prompts
  46. // and duplicate values will be removed.
  47. repeated Suggestion suggestions = 5 [(google.api.field_behavior) = OPTIONAL];
  48. // Optional. An additional suggestion chip that can link out to the associated app
  49. // or site.
  50. // The chip will be rendered with the title "Open <name>". Max 20 chars.
  51. StaticLinkPrompt link = 6 [(google.api.field_behavior) = OPTIONAL];
  52. // Optional. Mode for how this messages should be merged with previously defined
  53. // messages.
  54. // `true` will clear all previously defined messages (first and last
  55. // simple, content, suggestions link and canvas) and add messages defined
  56. // in this prompt. `false` will add messages defined in this prompt to
  57. // messages defined in previous responses. Setting this field to `false`
  58. // will also enable appending to some fields inside Simple prompts, the
  59. // Suggestions prompt and the Canvas prompt (part of the Content prompt).
  60. // The Content and Link messages will always be overwritten if defined in
  61. // the prompt. Default value is `false`.
  62. bool override = 7 [(google.api.field_behavior) = OPTIONAL];
  63. // A response to be used for interactive canvas experience.
  64. StaticCanvasPrompt canvas = 8;
  65. }
  66. // Optional. The criteria for whether this prompt matches a request. If the selector
  67. // is empty, this prompt will always be triggered.
  68. Selector selector = 1 [(google.api.field_behavior) = OPTIONAL];
  69. // The prompt response associated with the selector.
  70. StaticPromptResponse prompt_response = 2;
  71. }
  72. // Defines the criteria for whether a prompt matches a request.
  73. message Selector {
  74. // The set of required surface capabilities.
  75. SurfaceCapabilities surface_capabilities = 1;
  76. }
  77. // The list of candidate prompts to be sent to the client. Each prompt has a
  78. // selector to determine when it can be used. The first selector that matches
  79. // a request will be sent and the rest will be ignored.
  80. repeated StaticPromptCandidate candidates = 1;
  81. }