slot.proto 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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;
  16. import "google/actions/sdk/v2/interactionmodel/event_handler.proto";
  17. import "google/actions/sdk/v2/interactionmodel/type/class_reference.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/protobuf/struct.proto";
  20. option go_package = "google.golang.org/genproto/googleapis/actions/sdk/v2/interactionmodel;interactionmodel";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "SlotProto";
  23. option java_package = "com.google.actions.sdk.v2.interactionmodel";
  24. // Configuration for a slot. Slots are single units of data that can be filled
  25. // through natural language (ie. intent parameters), session parameters, and
  26. // other sources.
  27. message Slot {
  28. // A single place where slot prompts are defined.
  29. message PromptSettings {
  30. // Prompt for the slot value itself. Example: "What size did you want?"
  31. EventHandler initial_prompt = 1;
  32. // Prompt to give when the user's input does not match the expected
  33. // value type for the slot for the first time. Example: "Sorry, I
  34. // didn't get that."
  35. EventHandler no_match_prompt1 = 2;
  36. // Prompt to give when the user's input does not match the expected
  37. // value type for the slot for the second time. Example: "Sorry, I
  38. // didn't get that."
  39. EventHandler no_match_prompt2 = 3;
  40. // Prompt to give when the user's input does not match the expected
  41. // value type for the slot for the last time. Example: "Sorry, I
  42. // didn't get that."
  43. EventHandler no_match_final_prompt = 4;
  44. // Prompt to give when the user does not provide an input for the first
  45. // time. Example: "Sorry, I didn't get that."
  46. EventHandler no_input_prompt1 = 5;
  47. // Prompt to give when the user does not provide an input for the second
  48. // time. Example: "Sorry, I didn't get that."
  49. EventHandler no_input_prompt2 = 6;
  50. // Prompt to give when the user does not provide an input for the last
  51. // time. Example: "Sorry, I didn't get that."
  52. EventHandler no_input_final_prompt = 7;
  53. }
  54. // Message describing the commit behavior associated with the slot after it
  55. // has been successfully filled.
  56. message CommitBehavior {
  57. // The session parameter to write the slot value after it is filled. Note
  58. // that nested paths are not currently supported. "$$" is used to write the
  59. // slot value to a session parameter with same name as the slot.
  60. // Eg: write_session_param = "fruit" corresponds to "$session.params.fruit".
  61. // write_session_param = "ticket" corresponds to "$session.params.ticket".
  62. string write_session_param = 1;
  63. }
  64. // Configuration to populate a default value for this slot.
  65. message DefaultValue {
  66. // Optional. The session parameter to be used to initialize the slot value, if it has
  67. // a non-empty value. The type of the value must match the type of the slot.
  68. // Note that nested paths are not currently supported.
  69. // Eg: `session_param = "fruit"` corresponds to `$session.params.fruit`.
  70. // `session_param = "ticket"` corresponds to `$session.params.ticket`.
  71. string session_param = 1 [(google.api.field_behavior) = OPTIONAL];
  72. // Optional. Constant default value for the slot. This will only be used if a value
  73. // for this slot was not populated through the `session_param`. The
  74. // type for this value must match the type of the slot.
  75. google.protobuf.Value constant = 2 [(google.api.field_behavior) = OPTIONAL];
  76. }
  77. // Required. Name of the slot.
  78. string name = 1 [(google.api.field_behavior) = REQUIRED];
  79. // Required. Declares the data type of this slot.
  80. google.actions.sdk.v2.interactionmodel.type.ClassReference type = 2 [(google.api.field_behavior) = REQUIRED];
  81. // Optional. Indicates whether the slot is required to be filled before
  82. // advancing. Required slots that are not filled will trigger a customizable
  83. // prompt to the user.
  84. bool required = 3 [(google.api.field_behavior) = OPTIONAL];
  85. // Optional. Registers Prompts for different stages of slot filling.
  86. PromptSettings prompt_settings = 4 [(google.api.field_behavior) = OPTIONAL];
  87. // Optional. Commit behavior associated with the slot.
  88. CommitBehavior commit_behavior = 5 [(google.api.field_behavior) = OPTIONAL];
  89. // Optional. Additional configuration associated with the slot which is
  90. // used for filling the slot. The format of the config is specific to the
  91. // type of the slot. Resource references to user or session parameter can be
  92. // added to this config. This config is needed for filling slots related to
  93. // transactions and user engagement.
  94. //
  95. // Example:
  96. // For a slot of type actions.type.CompletePurchaseValue, the following
  97. // config proposes a digital good order with a reference to a client defined
  98. // session parameter `userSelectedSkuId`:
  99. //
  100. // {
  101. // "@type": "type.googleapis.com/
  102. // google.actions.transactions.v3.CompletePurchaseValueSpec",
  103. // "skuId": {
  104. // "skuType": "SKU_TYPE_IN_APP",
  105. // "id": "$session.params.userSelectedSkuId",
  106. // "packageName": "com.example.company"
  107. // }
  108. // }
  109. google.protobuf.Value config = 6 [(google.api.field_behavior) = OPTIONAL];
  110. // Optional. Configuration to populate a default value for this slot.
  111. DefaultValue default_value = 7 [(google.api.field_behavior) = OPTIONAL];
  112. }