@@ -43,6 +43,10 @@ service Flows {
4343 "https://www.googleapis.com/auth/dialogflow" ;
4444
4545 // Creates a flow in the specified agent.
46+ //
47+ // Note: You should always train a flow prior to sending it queries. See the
48+ // [training
49+ // documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
4650 rpc CreateFlow (CreateFlowRequest ) returns (Flow ) {
4751 option (google.api.http ) = {
4852 post : "/v3beta1/{parent=projects/*/locations/*/agents/*}/flows"
@@ -76,6 +80,10 @@ service Flows {
7680 }
7781
7882 // Updates the specified flow.
83+ //
84+ // Note: You should always train a flow prior to sending it queries. See the
85+ // [training
86+ // documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
7987 rpc UpdateFlow (UpdateFlowRequest ) returns (Flow ) {
8088 option (google.api.http ) = {
8189 patch : "/v3beta1/{flow.name=projects/*/locations/*/agents/*/flows/*}"
@@ -86,6 +94,10 @@ service Flows {
8694
8795 // Trains the specified flow. Note that only the flow in 'draft' environment
8896 // is trained.
97+ //
98+ // Note: You should always train a flow prior to sending it queries. See the
99+ // [training
100+ // documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
89101 rpc TrainFlow (TrainFlowRequest ) returns (google.longrunning.Operation ) {
90102 option (google.api.http ) = {
91103 post : "/v3beta1/{name=projects/*/locations/*/agents/*/flows/*}:train"
@@ -118,6 +130,10 @@ service Flows {
118130 }
119131
120132 // Imports the specified flow to the specified agent from a binary file.
133+ //
134+ // Note: You should always train a flow prior to sending it queries. See the
135+ // [training
136+ // documentation](https://cloud.google.com/dialogflow/cx/docs/concept/training).
121137 rpc ImportFlow (ImportFlowRequest ) returns (google.longrunning.Operation ) {
122138 option (google.api.http ) = {
123139 post : "/v3beta1/{parent=projects/*/locations/*/agents/*}/flows:import"
0 commit comments