Replies: 2 comments
-
|
Interactive diagrams of Quivr would be amazing for onboarding! What would help:
Tools that work well:
Example Mermaid: flowchart TD
A[Upload Doc] --> B[Chunking]
B --> C[Embedding]
C --> D[Vector Store]
E[Query] --> F[Retrieval]
D --> F
F --> G[LLM]
G --> H[Response]
Interactive options:
We build architecture diagrams for all our systems at RevolutionAI. Happy to contribute! Want me to draft some diagrams for key flows? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Interactive diagrams would be great! At RevolutionAI (https://revolutionai.io) we love visualizing RAG pipelines. Tools that work well:
Example Mermaid: graph LR
A[Document] --> B[Chunker]
B --> C[Embedder]
C --> D[Vector DB]
E[Query] --> F[Retriever]
D --> F
F --> G[LLM]
Would love to see this in Quivr docs! |
Beta Was this translation helpful? Give feedback.
0 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.
-
Hi,
I recently open-sourced my project called CodeBoarding. It uses static analysis and LLMs to analyze Python projects and produce interactive diagrams of a codebase. I created them after my slow progress onboarding to another open-source repository trying to contribute. Have a look and see how you like it:
https://github.com/CodeBoarding/GeneratedOnBoardings/blob/1d7e4ceedd57584ff36d8b8a588b50cf384d01c2/quivr/on_boarding.md
Any feedback or feature requests would be very appreciated :)
Beta Was this translation helpful? Give feedback.
All reactions