prompt.proto 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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.conversation;
  16. import "google/actions/sdk/v2/conversation/prompt/content/canvas.proto";
  17. import "google/actions/sdk/v2/conversation/prompt/content/content.proto";
  18. import "google/actions/sdk/v2/conversation/prompt/content/link.proto";
  19. import "google/actions/sdk/v2/conversation/prompt/simple.proto";
  20. import "google/actions/sdk/v2/conversation/prompt/suggestion.proto";
  21. option go_package = "google.golang.org/genproto/googleapis/actions/sdk/v2/conversation;conversation";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "PromptProto";
  24. option java_package = "com.google.actions.sdk.v2.conversation";
  25. // Represent a response to a user.
  26. message Prompt {
  27. // Optional. Mode for how this messages should be merged with previously
  28. // defined messages.
  29. // "false" will clear all previously defined messages (first and last
  30. // simple, content, suggestions link and canvas) and add messages defined in
  31. // this prompt.
  32. // "true" will add messages defined in this prompt to messages defined in
  33. // previous responses. Setting this field to "true" will also enable appending
  34. // to some fields inside Simple prompts, the Suggestion prompt and the Canvas
  35. // prompt (part of the Content prompt). The Content and Link messages will
  36. // always be overwritten if defined in the prompt.
  37. // Default value is "false".
  38. bool append = 1 [deprecated = true];
  39. // Optional. Mode for how this messages should be merged with previously
  40. // defined messages.
  41. // "true" clears all previously defined messages (first and last
  42. // simple, content, suggestions link and canvas) and adds messages defined in
  43. // this prompt.
  44. // "false" adds messages defined in this prompt to messages defined in
  45. // previous responses. Leaving this field to "false" also enables
  46. // appending to some fields inside Simple prompts, the Suggestions prompt,
  47. // and the Canvas prompt (part of the Content prompt). The Content and Link
  48. // messages are always overwritten if defined in the prompt. Default
  49. // value is "false".
  50. bool override = 8;
  51. // Optional. The first voice and text-only response.
  52. Simple first_simple = 2;
  53. // Optional. A content like a card, list or media to display to the user.
  54. Content content = 3;
  55. // Optional. The last voice and text-only response.
  56. Simple last_simple = 4;
  57. // Optional. Suggestions to be displayed to the user which will always appear
  58. // at the end of the response.
  59. // If the "override" field in the containing prompt is "false", the titles
  60. // defined in this field will be added to titles defined in any previously
  61. // defined suggestions prompts and duplicate values will be removed.
  62. repeated Suggestion suggestions = 5;
  63. // Optional. An additional suggestion chip that can link out to the associated app
  64. // or site.
  65. // The chip will be rendered with the title "Open <name>". Max 20 chars.
  66. Link link = 6;
  67. // Optional. Represents a Interactive Canvas response to be sent to the user.
  68. Canvas canvas = 9;
  69. }