Thanks to https://youtu.be/Vwy9rrXaz_E and https://youtu.be/pOsO40HSbOo I was able to get the V3 working, it looks really great. For V2 Supabase RAG AI Agent I have a problem. In the Delete Old Doc Rows node, for Table Name or ID there’s a red warning sign, because it looks like the “documents
” table doesn’t exist. In Cole’s video, https://youtu.be/pOsO40HSbOo , at 26mn27 he creates the database, and if this is successful, it seems to create the ‘documents’ table that you can then see in supabase. I tried to run the SQL query making the changes Cole indicated but I got this error message ‘Failed to generate title: API error happened while trying to communicate with the server. And in the supabase there isn’t the documents table (but the tables of V3 are presents).
Does anyone know if this is because I created the V3 Local Agentic RAG AI Agent tables first before making the v2 V2 Supabase RAG AI Agent tables, or is it an API issue?
In supabase when I execute the script indicated by Cole, I get this message ‘Error: ERROR: 42710: extension “vector” already exists ’ Maybe it’s because I created the V3 tables first, no? So maybe I have to delete all the tables with supabase and then first making the V2 and after the v3 ?
Or I just have to add this in the SQL script in line 2 of LangChain | Supabase Docs :
create extension if not exists vector;
Thanks for your attention