Spaces:
Running
on
Zero
Running
on
Zero
πwπ
Browse files
app.py
CHANGED
@@ -94,8 +94,8 @@ def talk(message, history):
|
|
94 |
for new_text in streamer:
|
95 |
partial_text += new_text
|
96 |
yield partial_text
|
97 |
-
partial_text += resources
|
98 |
-
return partial_text
|
99 |
|
100 |
|
101 |
TITLE = "RAG"
|
@@ -103,15 +103,16 @@ TITLE = "RAG"
|
|
103 |
DESCRIPTION = """
|
104 |
A rag pipeline with a chatbot feature
|
105 |
|
106 |
-
Resources used to build this project :
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
|
|
111 |
|
112 |
If you want to support my work please click on the heart react button β€οΈπ€
|
113 |
|
114 |
-
<sub><sup><sub><sup>psst, I am still open for work
|
115 |
"""
|
116 |
|
117 |
demo = gr.ChatInterface(
|
@@ -123,6 +124,7 @@ demo = gr.ChatInterface(
|
|
123 |
likeable=True,
|
124 |
layout="bubble",
|
125 |
bubble_full_width=False,
|
|
|
126 |
),
|
127 |
theme="Soft",
|
128 |
examples=[["what is machine learning"]],
|
|
|
94 |
for new_text in streamer:
|
95 |
partial_text += new_text
|
96 |
yield partial_text
|
97 |
+
# partial_text += resources
|
98 |
+
# return partial_text
|
99 |
|
100 |
|
101 |
TITLE = "RAG"
|
|
|
103 |
DESCRIPTION = """
|
104 |
A rag pipeline with a chatbot feature
|
105 |
|
106 |
+
Resources used to build this project :
|
107 |
+
|
108 |
+
embedding model : https://huggingface.co/mixedbread-ai/mxbai-embed-large-v1
|
109 |
+
dataset : https://huggingface.co/datasets/not-lain/wikipedia-small-3000-embedded (used mxbai-colbert-large-v1 to create the embedding column )
|
110 |
+
faiss docs : https://huggingface.co/docs/datasets/v2.18.0/en/package_reference/main_classes#datasets.Dataset.add_faiss_index
|
111 |
+
chatbot : https://huggingface.co/google/gemma-7b-it
|
112 |
|
113 |
If you want to support my work please click on the heart react button β€οΈπ€
|
114 |
|
115 |
+
<sub><sup><sub><sup>psst, I am still open for work, so please reach me out at https://not-lain.github.io/</sup></sub></sup></sub>
|
116 |
"""
|
117 |
|
118 |
demo = gr.ChatInterface(
|
|
|
124 |
likeable=True,
|
125 |
layout="bubble",
|
126 |
bubble_full_width=False,
|
127 |
+
label="RAG chatbot"
|
128 |
),
|
129 |
theme="Soft",
|
130 |
examples=[["what is machine learning"]],
|