Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,17 @@
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
|
|
3 |
|
4 |
"""
|
5 |
-
For more information on
|
6 |
"""
|
7 |
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
8 |
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
def respond(
|
11 |
message,
|
@@ -33,6 +39,9 @@ def respond(
|
|
33 |
stream=True,
|
34 |
temperature=temperature,
|
35 |
top_p=top_p,
|
|
|
|
|
|
|
36 |
):
|
37 |
token = message.choices[0].delta.content
|
38 |
|
@@ -45,7 +54,7 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
45 |
demo = gr.ChatInterface(
|
46 |
respond,
|
47 |
additional_inputs=[
|
48 |
-
gr.Textbox(value="You are a
|
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(
|
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
3 |
+
from transformers import RagTokenizer, RagRetriever
|
4 |
|
5 |
"""
|
6 |
+
For more information on huggingface_hub Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
7 |
"""
|
8 |
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
9 |
|
10 |
+
# Load the RAG tokenizer and retriever
|
11 |
+
rag_tokenizer = RagTokenizer.from_pretrained("facebook/rag-sequence-nq")
|
12 |
+
rag_retriever = RagRetriever.from_pretrained(
|
13 |
+
"facebook/rag-sequence-nq", index_name="apexcustoms.pdf", use_dummy_dataset=False
|
14 |
+
)
|
15 |
|
16 |
def respond(
|
17 |
message,
|
|
|
39 |
stream=True,
|
40 |
temperature=temperature,
|
41 |
top_p=top_p,
|
42 |
+
# Pass the RAG tokenizer and retriever to the client
|
43 |
+
rag_tokenizer=rag_tokenizer,
|
44 |
+
rag_retriever=rag_retriever,
|
45 |
):
|
46 |
token = message.choices[0].delta.content
|
47 |
|
|
|
54 |
demo = gr.ChatInterface(
|
55 |
respond,
|
56 |
additional_inputs=[
|
57 |
+
gr.Textbox(value="You are a helpful car configuration assistant, specifically you are the assistant for Apex Customs (https://www.apexcustoms.com/). Given the user's input, provide suggestions for car models, colors, and customization options. Be creative and conversational in your responses. You should remember the user car model and tailor your answers accordingly. \n\nUser: ", label="System message"),
|
58 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
59 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
60 |
gr.Slider(
|