Need some help on my simple RAG setup that won't rag. #5125
Unanswered
woezel1980
asked this question in
Q&A
Replies: 1 comment 5 replies
-
looks like your flow is wired but the retriever isn’t actually surfacing the embedded text back to the llm. this matches ProblemMap No.8 (retriever mismatch) — basically the query is bypassing the vector search and falling back to a generic completion. the fix isn’t infra, it’s a semantic alignment step. if you want, i can share the checklist we use that ensures the retriever and embedding are bound correctly (it’s open in our problem map). let me know if you want the link. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, regardless of watching a few tutorials on youtube and using chatGPT I am still stuck.
My goal: create a RAG. It consists of a document store in Flowise, which uses nomic-embed-text to embed. I uploaded a simple text file with (translated from Dutch) the sentence: "Pancakes are blue, peanut butter is green". I succesfully upserted to my self hosted Postgres DB. I can see the entry there.
This is my Chat flow (see screenshot).

The problem is that the agent does not seem to "see" the text in the text file. My expectation would be that if I ask what color pancakes are, I get the answer "blue". But instead I get a general answer.
Who knows what's wrong?
Beta Was this translation helpful? Give feedback.
All reactions