123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878 |
- syntax = "proto3";
- package google.cloud.dialogflow.cx.v3;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/dialogflow/cx/v3/audio_config.proto";
- import "google/cloud/dialogflow/cx/v3/intent.proto";
- import "google/cloud/dialogflow/cx/v3/page.proto";
- import "google/cloud/dialogflow/cx/v3/response_message.proto";
- import "google/cloud/dialogflow/cx/v3/session_entity_type.proto";
- import "google/protobuf/duration.proto";
- import "google/protobuf/struct.proto";
- import "google/rpc/status.proto";
- import "google/type/latlng.proto";
- option cc_enable_arenas = true;
- option csharp_namespace = "Google.Cloud.Dialogflow.Cx.V3";
- option go_package = "google.golang.org/genproto/googleapis/cloud/dialogflow/cx/v3;cx";
- option java_multiple_files = true;
- option java_outer_classname = "SessionProto";
- option java_package = "com.google.cloud.dialogflow.cx.v3";
- option objc_class_prefix = "DF";
- option ruby_package = "Google::Cloud::Dialogflow::CX::V3";
- option (google.api.resource_definition) = {
- type: "dialogflow.googleapis.com/Session"
- pattern: "projects/{project}/locations/{location}/agents/{agent}/sessions/{session}"
- pattern: "projects/{project}/locations/{location}/agents/{agent}/environments/{environment}/sessions/{session}"
- };
- service Sessions {
- option (google.api.default_host) = "dialogflow.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform,"
- "https://www.googleapis.com/auth/dialogflow";
-
-
-
-
-
-
-
-
- rpc DetectIntent(DetectIntentRequest) returns (DetectIntentResponse) {
- option (google.api.http) = {
- post: "/v3/{session=projects/*/locations/*/agents/*/sessions/*}:detectIntent"
- body: "*"
- additional_bindings {
- post: "/v3/{session=projects/*/locations/*/agents/*/environments/*/sessions/*}:detectIntent"
- body: "*"
- }
- };
- }
-
-
-
-
-
-
-
- rpc StreamingDetectIntent(stream StreamingDetectIntentRequest) returns (stream StreamingDetectIntentResponse) {
- }
- // Returns preliminary intent match results, doesn't change the session
- // status.
- rpc MatchIntent(MatchIntentRequest) returns (MatchIntentResponse) {
- option (google.api.http) = {
- post: "/v3/{session=projects/*/locations/*/agents/*/sessions/*}:matchIntent"
- body: "*"
- additional_bindings {
- post: "/v3/{session=projects/*/locations/*/agents/*/environments/*/sessions/*}:matchIntent"
- body: "*"
- }
- };
- }
-
-
-
- rpc FulfillIntent(FulfillIntentRequest) returns (FulfillIntentResponse) {
- option (google.api.http) = {
- post: "/v3/{match_intent_request.session=projects/*/locations/*/agents/*/sessions/*}:fulfillIntent"
- body: "*"
- additional_bindings {
- post: "/v3/{match_intent_request.session=projects/*/locations/*/agents/*/environments/*/sessions/*}:fulfillIntent"
- body: "*"
- }
- };
- }
- }
- message DetectIntentRequest {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string session = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Session"
- }
- ];
-
- QueryParameters query_params = 2;
-
- QueryInput query_input = 3 [(google.api.field_behavior) = REQUIRED];
-
- OutputAudioConfig output_audio_config = 4;
- }
- message DetectIntentResponse {
-
- enum ResponseType {
-
- RESPONSE_TYPE_UNSPECIFIED = 0;
-
-
-
- PARTIAL = 1;
-
- FINAL = 2;
- }
-
-
- string response_id = 1;
-
- QueryResult query_result = 2;
-
-
-
-
-
-
-
-
-
-
-
- bytes output_audio = 4;
-
- OutputAudioConfig output_audio_config = 5;
-
- ResponseType response_type = 6;
-
-
-
- bool allow_cancellation = 7;
- }
- message StreamingDetectIntentRequest {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string session = 1 [(google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Session"
- }];
-
- QueryParameters query_params = 2;
-
- QueryInput query_input = 3 [(google.api.field_behavior) = REQUIRED];
-
- OutputAudioConfig output_audio_config = 4;
-
-
-
-
- bool enable_partial_response = 5;
- }
- message StreamingDetectIntentResponse {
-
- oneof response {
-
- StreamingRecognitionResult recognition_result = 1;
-
- DetectIntentResponse detect_intent_response = 2;
- }
- }
- message StreamingRecognitionResult {
-
- enum MessageType {
-
- MESSAGE_TYPE_UNSPECIFIED = 0;
-
- TRANSCRIPT = 1;
-
-
-
-
-
-
-
-
- END_OF_SINGLE_UTTERANCE = 2;
- }
-
- MessageType message_type = 1;
-
-
- string transcript = 2;
-
-
-
-
- bool is_final = 3;
-
-
-
-
-
-
-
- float confidence = 4;
-
-
-
-
-
-
-
- float stability = 6;
-
-
-
- repeated SpeechWordInfo speech_word_info = 7;
-
-
-
- google.protobuf.Duration speech_end_offset = 8;
-
- string language_code = 10;
- }
- message QueryParameters {
-
-
-
-
- string time_zone = 1;
-
- google.type.LatLng geo_location = 2;
-
-
-
- repeated SessionEntityType session_entity_types = 3;
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Struct payload = 4;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Struct parameters = 5;
-
-
-
-
-
-
-
-
-
-
-
-
- string current_page = 6 [(google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Page"
- }];
-
- bool disable_webhook = 7;
-
-
- bool analyze_query_text_sentiment = 8;
-
-
-
-
-
-
-
-
- map<string, string> webhook_headers = 10;
-
-
-
-
-
-
-
-
- repeated string flow_versions = 14 [(google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Version"
- }];
- }
- message QueryInput {
-
- oneof input {
-
- TextInput text = 2;
-
- IntentInput intent = 3;
-
- AudioInput audio = 5;
-
- EventInput event = 6;
-
- DtmfInput dtmf = 7;
- }
-
-
-
-
- string language_code = 4 [(google.api.field_behavior) = REQUIRED];
- }
- message QueryResult {
-
- oneof query {
-
-
- string text = 1;
-
-
-
-
- string trigger_intent = 11 [(google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Intent"
- }];
-
-
- string transcript = 12;
-
-
- string trigger_event = 14;
-
-
- DtmfInput dtmf = 23;
- }
-
-
-
-
- string language_code = 2;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Struct parameters = 3;
-
-
-
- repeated ResponseMessage response_messages = 4;
-
- repeated google.rpc.Status webhook_statuses = 13;
-
-
-
- repeated google.protobuf.Struct webhook_payloads = 6;
-
-
- Page current_page = 7;
-
-
-
-
- Intent intent = 8 [deprecated = true];
-
-
-
-
-
-
-
- float intent_detection_confidence = 9 [deprecated = true];
-
- Match match = 15;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Struct diagnostic_info = 10;
-
-
-
- SentimentAnalysisResult sentiment_analysis_result = 17;
- }
- message TextInput {
-
-
- string text = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message IntentInput {
-
-
-
- string intent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Intent"
- }
- ];
- }
- message AudioInput {
-
- InputAudioConfig config = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
- bytes audio = 2;
- }
- message EventInput {
-
- string event = 1;
- }
- message DtmfInput {
-
- string digits = 1;
-
- string finish_digit = 2;
- }
- message Match {
-
- enum MatchType {
-
- MATCH_TYPE_UNSPECIFIED = 0;
-
- INTENT = 1;
-
- DIRECT_INTENT = 2;
-
- PARAMETER_FILLING = 3;
-
- NO_MATCH = 4;
-
- NO_INPUT = 5;
-
- EVENT = 6;
- }
-
-
-
- Intent intent = 1;
-
-
-
- string event = 6;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Struct parameters = 2;
-
-
-
- string resolved_input = 3;
-
- MatchType match_type = 4;
-
-
-
-
-
-
- float confidence = 5;
- }
- message MatchIntentRequest {
-
-
-
-
-
-
-
-
-
-
-
-
- string session = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Session"
- }
- ];
-
- QueryParameters query_params = 2;
-
- QueryInput query_input = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message MatchIntentResponse {
-
- oneof query {
-
-
- string text = 1;
-
-
-
-
- string trigger_intent = 2 [(google.api.resource_reference) = {
- type: "dialogflow.googleapis.com/Intent"
- }];
-
-
- string transcript = 3;
-
-
- string trigger_event = 6;
- }
-
-
- repeated Match matches = 4;
-
-
- Page current_page = 5;
- }
- message FulfillIntentRequest {
-
-
- MatchIntentRequest match_intent_request = 1;
-
- Match match = 2;
-
- OutputAudioConfig output_audio_config = 3;
- }
- message FulfillIntentResponse {
-
-
- string response_id = 1;
-
- QueryResult query_result = 2;
-
-
-
-
-
-
-
-
-
-
-
- bytes output_audio = 3;
-
- OutputAudioConfig output_audio_config = 4;
- }
- message SentimentAnalysisResult {
-
-
- float score = 1;
-
-
- float magnitude = 2;
- }
|