Live data from Hacker News

ChatGPT plugins now support Postgres and Supabase

supabase.com

11–20 of 34 posts

Re: ChatGPT plugins now support Postgres and Supabase

#11

I was going to work on something similar, I'm glad I procrastinated.

Exactly, not everyone wants to send their data to OpenAI, I'm working on this (albeit very slowly) but hopefully I'll have something out in a week or two, and will be open source _and_ plug and play.

https://github.com/aldarisbm/memory

Re: ChatGPT plugins now support Postgres and Supabase

#13

Does this use Faiss to find similar vectors? https://engineering.fb.com/2017/03/29/data-infrastructure/fa...

heya, yep, if you add ivfflat index for embedding in your table. I have to note that I am not pgvector contributor and this is how i understood it from the repo and its code. you can find a bit more context from the paper https://dl.acm.org/doi/pdf/10.1145/3318464.3386131 and https://github.com/pgvector/pgvector repo itself

Re: ChatGPT plugins now support Postgres and Supabase

#14
post #3

I wrote a blog a few weeks ago on how LLMs will enable ‘Context Warehouses’ for work. Looks like they may be realised even sooner than I thought! https://macroapp.io/blog/the-context-warehouse

So a data lake of business artifacts queried using natural language and AI.

I think one disadvantage of pulling “context” is that you don’t really know what exists. You can get context for things you have an idea about, but not necessarily all the context you need.

Im not saying lots of meetings are necessarily great but you’re essentially indexing the information by listening.

Generally speaking though I like the idea of ingesting things as quickly as possible and then giving people strong tools to get what they need on demand.

Re: ChatGPT plugins now support Postgres and Supabase

#15
Slightly tangent, but it would be really powerful to be able to train a model (through LoRa probably) on your datawarehouse, having table structures of facts and dimensions.

Self service BI would be a solved problem. No more building tedious widgets, but simply ask ChatGPT or similar for 'last 5 yours pNl by business unit'. Bonus points if based on cardinality, etc. it will properly choose the correct chart type (e.g.: stacked bar).

Re: ChatGPT plugins now support Postgres and Supabase

#16
Slightly off topic: you see in the article one with a generic Engineering title (Egor) and one with fancy massive title CEO and Co-founder (Paul), while I’m almost certain that article and the work behind done by the engineering dude yet he’s not even given a proper title -at least of external marketing- while the other is piggybacking on that work. I saw that kind of behavior a lot especially in software companies, belittling, credit taking or sharing, etc., especially in small startups for some reason.

Re: ChatGPT plugins now support Postgres and Supabase

#17
post #16

Slightly off topic: you see in the article one with a generic Engineering title (Egor) and one with fancy massive title CEO and Co-founder (Paul), while I’m almost certain that article and the work behind done by the engineering dude yet he’s not even given a proper title -at least of external marketing- while the other is piggybacking on that work. I saw that kind of behavior a lot especially in software companies,…

Hey, co-author here, thanks for caring about me. This is me who added myself as an author to the blog, i feel like “engineering” is the best description for the work I do in Supabase :) You can find it in PR https://github.com/supabase/supabase/pull/14520 We have a flat culture and if you scroll through past posts, you see that it is the most common description for our team.

As for the work behind, copple made significant edits and additions (as I thought of them) to my draft, so i decided add him as coauthor (just to make sure: I wasn’t asked by anyone and copple only noticed this after publication)

Re: ChatGPT plugins now support Postgres and Supabase

#18
post #15

Slightly tangent, but it would be really powerful to be able to train a model (through LoRa probably) on your datawarehouse, having table structures of facts and dimensions. Self service BI would be a solved problem. No more building tedious widgets, but simply ask ChatGPT or similar for 'last 5 yours pNl by business unit'. Bonus points if based on cardinality, etc. it will properly choose the correct chart type (e.g…

I’m building exactly this! https://vanna.ai

Re: ChatGPT plugins now support Postgres and Supabase

#19
How is this considered private? When you use OpenAI's embedding model then aren't you already sending data to OpenAI?

This reads like Langchain implementation of "chat with your documents". Just that in this case instead of a standalone hosted chatbot, you do this from ChatGPT and can combine it with everything else ChatGPT might know.

Re: ChatGPT plugins now support Postgres and Supabase

#20

How is this considered private? When you use OpenAI's embedding model then aren't you already sending data to OpenAI? This reads like Langchain implementation of "chat with your documents". Just that in this case instead of a standalone hosted chatbot, you do this from ChatGPT and can combine it with everything else ChatGPT might know.

is it the right convo branch? as this is a chatgpt plugin and uses openai embeddings api, it for certain sends some data to their servers. both when embeddings are generated and when chatgpt sends request to your plugin and receives response back.
Post reply on HN