Dhenenjay commited on
Commit
a84faf0
·
verified ·
1 Parent(s): adcfb91

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -23
README.md CHANGED
@@ -1,23 +1,15 @@
1
- ---
2
- title: Term-4-Project
3
- app_file: new_app.py
4
- sdk: gradio
5
- sdk_version: 4.41.0
6
- ---
7
- # PerplexityClone
8
-
9
- Demo: [https://huggingface.co/spaces/YashSax/PerplexityClone](https://huggingface.co/spaces/YashSax/PerplexityClone)
10
-
11
- Chat Version Demo (multi-turn + retrieval for each step + query rewrite): [Google Drive Link](https://drive.google.com/file/d/1LCS4RdyI46WhfJabGGkIrgFJFWZq7cDK/view)
12
-
13
- A clone of [perplexity.ai](perplexity.ai), an LLM and RAG-powered search engine using LangChain, Chroma Vector Store, and Cohere Text Generation and Embedding Models. Frontend designed using Gradio.
14
-
15
- ![image](https://github.com/YashSax/PerplexityClone/assets/46911428/014076e5-fa74-4821-b0b0-2298b3a89205)
16
-
17
- ### Overview
18
-
19
- 1) The user's query is passed through the Google Search API to create a corpus of the 10 most recent and relevant webpages.
20
- 2) The documents are split and stored into a Chroma vector store
21
- 3) Using Cohere's text embedding model, relevant snippets are collected using embedding similarity
22
- 4) The relevant snippets are compiled into context for the RAG application
23
- 5) The prompt and context are fed into Cohere's Command-R Text Generation LLM, and the output and documents are presented to the user.
 
1
+ ---
2
+ title: Term-4-Project
3
+ app_file: new_app.py
4
+ sdk: gradio
5
+ sdk_version: 4.41.0
6
+ ---
7
+
8
+
9
+ ### Overview
10
+
11
+ 1) The user's query is passed through the Google Search API to create a corpus of the 10 most recent and relevant webpages.
12
+ 2) The documents are split and stored into a Chroma vector store
13
+ 3) Using Cohere's text embedding model, relevant snippets are collected using embedding similarity
14
+ 4) The relevant snippets are compiled into context for the RAG application
15
+ 5) The prompt and context are fed into Cohere's Command-R Text Generation LLM, and the output and documents are presented to the user.