fix user_id missed

This commit is contained in:
jyong 2025-09-10 14:13:44 +08:00
parent a3bbf098ef
commit f4abd3856a
1 changed files with 4 additions and 3 deletions

View File

@ -1354,11 +1354,12 @@ class RagPipelineService:
user_input_variables.append(value)
datasource_plugins.append({
"node_id": datasource_node.get("id"),
"plugin_id": datasource_node_data.get("plugin_id"),
"provider_name": datasource_node_data.get("provider_name"),
"datasource_name": datasource_node_data.get("datasource_name"),
"datasource_configurations": datasource_node_data.get("datasource_configurations"),
"plugin_unique_identifier": datasource_node_data.get("plugin_unique_identifier"),
"provider_type": datasource_node_data.get("provider_type"),
"title": datasource_node_data.get("title"),
"user_input_variables": user_input_variables,
})
return datasource_plugins