Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,68 +7,6 @@ import duckdb
|
|
7 |
global ds
|
8 |
|
9 |
|
10 |
-
"""
|
11 |
-
For more information on `huggingface_hub` Inference API support,
|
12 |
-
please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
13 |
-
"""
|
14 |
-
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
15 |
-
|
16 |
-
|
17 |
-
def respond(
|
18 |
-
message,
|
19 |
-
history: list[tuple[str, str]],
|
20 |
-
system_message,
|
21 |
-
max_tokens,
|
22 |
-
temperature,
|
23 |
-
top_p,
|
24 |
-
):
|
25 |
-
messages = [{"role": "system", "content": system_message}]
|
26 |
-
|
27 |
-
for val in history:
|
28 |
-
if val[0]:
|
29 |
-
messages.append({"role": "user", "content": val[0]})
|
30 |
-
if val[1]:
|
31 |
-
messages.append({"role": "assistant", "content": val[1]})
|
32 |
-
|
33 |
-
messages.append({"role": "user", "content": message})
|
34 |
-
|
35 |
-
response = ""
|
36 |
-
|
37 |
-
for message in client.chat_completion(
|
38 |
-
messages,
|
39 |
-
max_tokens=max_tokens,
|
40 |
-
stream=True,
|
41 |
-
temperature=temperature,
|
42 |
-
top_p=top_p,
|
43 |
-
):
|
44 |
-
token = message.choices[0].delta.content
|
45 |
-
|
46 |
-
response += token
|
47 |
-
yield response
|
48 |
-
|
49 |
-
|
50 |
-
"""
|
51 |
-
For information on how to customize the ChatInterface,
|
52 |
-
peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
53 |
-
"""
|
54 |
-
"""
|
55 |
-
demo = gr.ChatInterface(
|
56 |
-
respond,
|
57 |
-
additional_inputs=[
|
58 |
-
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
59 |
-
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
60 |
-
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
61 |
-
gr.Slider(
|
62 |
-
minimum=0.1,
|
63 |
-
maximum=1.0,
|
64 |
-
value=0.95,
|
65 |
-
step=0.05,
|
66 |
-
label="Top-p (nucleus sampling)",
|
67 |
-
),
|
68 |
-
],
|
69 |
-
)
|
70 |
-
"""
|
71 |
-
|
72 |
def load_new_dataset():
|
73 |
gr.Info(message="Loading dataset...")
|
74 |
ds = load_dataset("fka/awesome-chatgpt-prompts", split="train")
|
|
|
7 |
global ds
|
8 |
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
def load_new_dataset():
|
11 |
gr.Info(message="Loading dataset...")
|
12 |
ds = load_dataset("fka/awesome-chatgpt-prompts", split="train")
|