Spaces:
Running
Running
filipsedivy
commited on
Commit
·
eb8aef0
1
Parent(s):
163e2ea
Update app
Browse files- app.py +46 -42
- requirements.txt +2 -1
app.py
CHANGED
@@ -1,63 +1,67 @@
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
|
10 |
def respond(
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
top_p,
|
17 |
):
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
25 |
|
26 |
-
|
27 |
|
28 |
-
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
|
31 |
-
messages,
|
32 |
-
max_tokens=max_tokens,
|
33 |
-
stream=True,
|
34 |
-
temperature=temperature,
|
35 |
-
top_p=top_p,
|
36 |
-
):
|
37 |
-
token = message.choices[0].delta.content
|
38 |
|
39 |
-
response += token
|
40 |
-
yield response
|
41 |
|
42 |
-
"""
|
43 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
44 |
-
"""
|
45 |
demo = gr.ChatInterface(
|
46 |
respond,
|
47 |
additional_inputs=[
|
48 |
-
gr.
|
49 |
-
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
50 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
51 |
-
gr.Slider(
|
52 |
-
minimum=0.1,
|
53 |
-
maximum=1.0,
|
54 |
-
value=0.95,
|
55 |
-
step=0.05,
|
56 |
-
label="Top-p (nucleus sampling)",
|
57 |
-
),
|
58 |
],
|
|
|
|
|
|
|
59 |
)
|
60 |
|
61 |
-
|
62 |
if __name__ == "__main__":
|
63 |
-
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
3 |
|
4 |
+
from langchain.embeddings import SentenceTransformerEmbeddings
|
5 |
+
from langchain.vectorstores import Chroma
|
6 |
+
|
7 |
+
from transformers import T5Tokenizer, T5ForConditionalGeneration
|
8 |
+
|
9 |
+
client = InferenceClient("google/flan-t5-large")
|
10 |
+
|
11 |
+
embeddings = SentenceTransformerEmbeddings(model_name="msmarco-distilbert-base-v4")
|
12 |
+
db = Chroma(persist_directory="embeddings", embedding_function=embeddings)
|
13 |
+
|
14 |
+
tokenizer = T5Tokenizer.from_pretrained("google/flan-t5-large")
|
15 |
+
model = T5ForConditionalGeneration.from_pretrained("google/flan-t5-large")
|
16 |
|
17 |
|
18 |
def respond(
|
19 |
+
message,
|
20 |
+
history: list[tuple[str, str]],
|
21 |
+
max_tokens,
|
22 |
+
temperature,
|
23 |
+
repetition_penalty,
|
|
|
24 |
):
|
25 |
+
matching_docs = db.similarity_search(message)
|
26 |
+
|
27 |
+
context = ""
|
28 |
+
current_length = 0
|
29 |
+
for i, doc in enumerate(matching_docs):
|
30 |
+
doc_text = f"Document {i + 1}:\n{doc.page_content}\n\n"
|
31 |
+
doc_length = len(doc_text.split())
|
32 |
+
context += doc_text
|
33 |
+
current_length += doc_length
|
34 |
|
35 |
+
prompt = (
|
36 |
+
f"You are an expert in summarizing and answering questions based on given documents. "
|
37 |
+
f"Please provide a detailed and well-explained answer to the following query in 4-6 sentences:\n\n"
|
38 |
+
f"Query: {message}\n\n"
|
39 |
+
f"Based on the following documents:\n{context}\n\n"
|
40 |
+
f"Answer:"
|
41 |
+
)
|
42 |
|
43 |
+
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
|
44 |
|
45 |
+
outputs = model.generate(input_ids,
|
46 |
+
do_sample=True,
|
47 |
+
max_new_tokens=max_tokens,
|
48 |
+
temperature=temperature,
|
49 |
+
repetition_penalty=repetition_penalty)
|
50 |
|
51 |
+
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
|
|
|
|
53 |
|
|
|
|
|
|
|
54 |
demo = gr.ChatInterface(
|
55 |
respond,
|
56 |
additional_inputs=[
|
57 |
+
gr.Slider(minimum=1, maximum=2048, value=1024, step=1, label="Max new tokens"),
|
|
|
58 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
59 |
+
gr.Slider(minimum=0.1, maximum=10, value=1.5, step=0.1, label="Repetition penalty"),
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
],
|
61 |
+
retry_btn=None,
|
62 |
+
undo_btn=None,
|
63 |
+
clear_btn=None,
|
64 |
)
|
65 |
|
|
|
66 |
if __name__ == "__main__":
|
67 |
+
demo.launch()
|
requirements.txt
CHANGED
@@ -3,4 +3,5 @@ langchain
|
|
3 |
langchain-community
|
4 |
chromadb
|
5 |
sentence_transformers
|
6 |
-
unstructured
|
|
|
|
3 |
langchain-community
|
4 |
chromadb
|
5 |
sentence_transformers
|
6 |
+
unstructured
|
7 |
+
sentencepiece
|