langchain
langchain copied to clipboard
DOC: Table creation for Supabase (Postgres) has incorrect type
Issue with current documentation:
https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/supabase Under '-- Create a table to store your documents' the id column is set to big serial but it is referenced later as uuid 10 lines down when creating the function
Idea or request for content:
It is currently
id bigserial primary key,
Changing it to this fixed the error I was getting
'id uuid primary key,'
Answer generated by a 🤖
Answer
Thank you for bringing this issue to our attention! We appreciate your feedback and contribution to improving the LangChain documentation.
To ensure that your proposed fix is considered, we encourage you to create a pull request (PR) with the updated code. This will allow the maintainers to review your changes and determine if they should be merged into the documentation.
Please follow the contribution guidelines provided in the LangChain repository to create your PR. We look forward to reviewing your proposed fix and appreciate your efforts in making LangChain even better!
This response is meant to be useful, save you time, and share context. It is not meant to be a precise solution, but rather a starting point for your own research.
Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.
Apologies, looks like I missed this in my PR: https://github.com/hwchase17/langchain/pull/7257!
No worries!