-
Notifications
You must be signed in to change notification settings - Fork 37
Description
Hi, thanks for maintaining the Fireworks cookbook. The existing notebooks are very helpful for people learning how to build RAG systems on top of Fireworks.
I wanted to propose an extra notebook idea that many users seem to need once they move beyond “hello world”:
Debugging RAG pipelines with a failure-mode map
What I have in mind
There is an open source project called WFGY Problem Map that defines 16 common failure modes (No.1–No.16) for LLM + RAG systems, such as:
- retrieval hallucination despite correct context
- vector store ingestion / index issues
- bootstrap ordering / infra races between app and DB
- config / secrets drift first appearing in production
Problem Map README:
A cookbook notebook could:
- build a simple Fireworks-based RAG example
- deliberately trigger 2–3 of the Problem Map failure modes
- show how to recognise each mode from logs / behaviour
- apply a minimal structural fix
This would give users a concrete debugging playbook instead of just tuning prompts or swapping models.
If this sounds interesting, I am happy to help draft an outline or example prompts. If it feels outside the scope of the cookbook, no problem, I know you already have a lot of material to maintain.