←back to thread

276 points Fendy | 1 comments | | HN request time: 0.203s | source
Show context
qaq ◴[] No.45170557[source]
"I recently spoke with the CTO of a popular AI note-taking app who told me something surprising: they spend twice as much on vector search as they do on OpenAI API calls. Think about that for a second. Running the retrieval layer costs them more than paying for the LLM itself. That flips the usual assumption on its head." Hmm well start sending full documents as part of context see it flip back :).
replies(3): >>45170757 #>>45171312 #>>45182178 #
heywoods ◴[] No.45170757[source]
Egress costs? I’m really surprised by this. Thanks for sharing.
replies(2): >>45170991 #>>45177575 #
qaq ◴[] No.45170991[source]
Sry maybe should've being more clear it was a sarcastic remark. The whole point of doing vector db search is to feed LLM with very targeted context so you can save $ on API calls to LLM.
replies(2): >>45171144 #>>45190030 #
infecto ◴[] No.45171144[source]
That’s not the whole point it’s in the intersection of reducing tokens sent but also getting search both specific and generic enough to capture the correct context data.
replies(1): >>45173722 #
1. j45 ◴[] No.45173722[source]
It's possible to create linking documents between the documents to help smooth out things in some cases.