Dialogflow ES
note
The Dialogflow ES integration requires the usage of the hf
command line tool. See how to install it here.
#
Intents#
Importing a Dialogflow ES agentIn Dialogflow ES, go to the
Export and Import
section of your agent’s settings, then export your agent to a zip file.Unzip the downloaded file.
Open a terminal to the directory in which the agent was unzipped. This directory should contain a file named
agent.json
.Import the agent in a workspace by running:
hf dialogflow es import --workspace <workspace id> --clear
. To find out about workspace id, see this.Example:
- You may now open the workspace in your browser.
#
Exporting a Workspacetip
You can track changes that have been done in HumanFirst by initializing a git repository in the directory of your unzipped agent and then committing the initial files originating from Dialogflow. By doing this, you will be able to easily compare the changes by using git diff
.
Open a terminal to the directory in which an exported Dialogflow agent has been unzipped. This directory should contain a file named
agent.json
.Export a HumanFirst workspace into the directory by running:
hf dialogflow es export --workspace <workspace id>
Example:
- Zip the agent directory:
zip -r agent.zip .
- In Dialogflow ES, go to the
Export and Import
section of your agent’s settings, click onImport from zip
, select the just-createdagent.zip
file and click on import.
#
Advanced usage- It is possible to mimic the follow-up intents hierarchy when importing the agent into HumanFirst. This will allow you to see the follow-up structure. Since HumanFirst doesn’t support follow-up intents yet, keep in mind that the follow-up structure may not be accurate when importing it back into Dialogflow. Use the
--followup-hierarchy
option at both the import and export to enable this option.