如何将生成器添加到 Dialogflow CX nodejs api 中的 fullfillment 部分

如何将生成器添加到 Dialogflow CX nodejs api 中的 fullfillment 部分

根据文档,没有办法。或者我没有找到它。

 interface IFulfillment {

                        /** Fulfillment messages */
                        messages?: (google.cloud.dialogflow.cx.v3.IResponseMessage[]|null);

                        /** Fulfillment webhook */
                        webhook?: (string|null);

                        /** Fulfillment returnPartialResponses */
                        returnPartialResponses?: (boolean|null);

                        /** Fulfillment tag */
                        tag?: (string|null);

                        /** Fulfillment setParameterActions */
                        setParameterActions?: (google.cloud.dialogflow.cx.v3.Fulfillment.ISetParameterAction[]|null);

                        /** Fulfillment conditionalCases */
                        conditionalCases?: (google.cloud.dialogflow.cx.v3.Fulfillment.IConditionalCases[]|null);

                        /** Fulfillment advancedSettings */
                        advancedSettings?: (google.cloud.dialogflow.cx.v3.IAdvancedSettings|null);

                        /** Fulfillment enableGenerativeFallback */
                        enableGenerativeFallback?: (boolean|null);
                    }

在 Google Cloud Console 中,我可以添加生成器

相关内容