yash-srivastava19 commited on
Commit
329ef19
·
1 Parent(s): d9da2af

Create chainlit.md

Browse files
Files changed (1) hide show
  1. chainlit.md +12 -0
chainlit.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Blaze - A Cohere + Metaphor Clone of Perplexity.ai
2
+
3
+ A Metaphor + Cohere alternative to perplexity.ai .
4
+ Blaze is a chatbot that answers your query, and allows you to learn more on the subject matter with RAG(Retrieval Augmented Generation). Gone are the days of fact checking LLM output, with Blaze you can do it all. The value of information is more nowadays, and Blaze delivers all of this, for free of cost*
5
+
6
+ ### Why create something from scratch?
7
+ I love the chain of thought reasoning in real life, and having an assistant like perplexity.ai is really helpful. Although Cohere is rolling out Coral with RAG, we can 'mimic' RAG with leveraing Cohere Chat Model(to have a meaningful conversations with user) and Metaphor Neural Search(to get additional sources) to make really hacky Chatbot - that I call Blaze.
8
+ The project was made as a part of a weekend project(~ 3hr) for Metaphor as a part of their recruitement process, and due to some time constraints, I could not polish this like I wanted to do(due to having university exams on both weekends and weekdays). I wanted to have an even great UI, and professionally deploy on docker.
9
+ Contrary to the name, Blaze is not lightning fast. I believe there is a huge scope for improvement, and that this can be enhanced even more(I haven't even used 10% of what Metaphor offered, but I hope with more time, I would've done an even great job !)
10
+
11
+ ### Details
12
+ The file `app.py` contains all the logic for Blaze. Blaze creates a custom langchain LLM wrapper for Cohere's Chat model, and uses the user entered prompt to do a neural search using the Metaphor API. The chatbot is containerized using Docker and deployed on Huggingface Spaces.