{
"point": "app.external_data_tool.query", // Extension point type, fixed as app.external_data_tool.query
"params": {
"app_id": string, // Application ID
"tool_variable": string, // External data tool variable name, indicating the source of the corresponding variable tool call
"inputs": { // Variable values passed by end user, key is variable name, value is variable value
"var_1": "value_1",
"var_2": "value_2",
...
},
"query": string | null // Current conversation input content from end user, fixed parameter for conversational applications.
}
}