mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-03-07 22:33:11 +00:00
Couple small corrections
This commit is contained in:
@@ -20,7 +20,7 @@ SERVICE_ROLE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyAgCiAgICAicm9sZSI6ICJzZX
|
||||
DASHBOARD_USERNAME=supabase
|
||||
DASHBOARD_PASSWORD=this_password_is_insecure_and_should_be_updated
|
||||
SECRET_KEY_BASE=UpNVntn3cDxHJpq99YMc1T1AQgQpc8kfYTuRgBiYa15BLrx8etQoXz3gZv1/u2oq
|
||||
VAULT_ENC_KEY=your-encryption-key-32-chars-min
|
||||
VAULT_ENC_KEY=your-encryption-key-32-chars-exactly
|
||||
|
||||
|
||||
############
|
||||
|
||||
@@ -546,7 +546,7 @@
|
||||
"descriptionType": "manual",
|
||||
"toolDescription": "Given a file ID, fetches the text from the document.",
|
||||
"operation": "executeQuery",
|
||||
"query": "SELECT \n string_agg(content, ' ') as document_text\nFROM documents_pg\n WHERE metadata->>'file_id' = $1\nGROUP BY metadata->>'file_id';",
|
||||
"query": "SELECT \n string_agg(text, ' ') as document_text\nFROM documents_pg\n WHERE metadata->>'file_id' = $1\nGROUP BY metadata->>'file_id';",
|
||||
"options": {
|
||||
"queryReplacement": "={{ $fromAI('file_id') }}"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user