Google Search Module
Field's Name
JSON Type (Required/Optional)
Description
Example
{
"id": "test",
"initial": "home_state",
"states": {
"home_state": {
"inputs": {
"text_to_be_search": {
"type": "text",
"user_input": true
}
},
"tasks": [
{
"name": "google_search_module_test_task",
"module_type": "GoogleSearchModule",
"module_config": {
"query": "{{text_to_be_search}}",
"num_results": 3,
"length_per_result":500,
"output_name": "result"
}
}
],
"render": {
"text": "{{result}}",
"buttons": [
{
"content":"Search Again",
"description":"",
"on_click":"search"
}
]
},
"transitions": {
"search": "home_state"
}
}
}
}Last updated