Spaces:
No application file
No application file
Updated model
Browse files
app.py
CHANGED
@@ -2,10 +2,12 @@ import gradio as gr
|
|
2 |
from huggingface_hub import InferenceClient
|
3 |
|
4 |
"""
|
5 |
-
For more information on `huggingface_hub` Inference API support, please check the docs:
|
|
|
6 |
"""
|
7 |
-
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
8 |
|
|
|
|
|
9 |
|
10 |
def respond(
|
11 |
message,
|
@@ -16,17 +18,17 @@ def respond(
|
|
16 |
top_p,
|
17 |
):
|
18 |
messages = [{"role": "system", "content": system_message}]
|
19 |
-
|
20 |
for val in history:
|
21 |
if val[0]:
|
22 |
messages.append({"role": "user", "content": val[0]})
|
23 |
if val[1]:
|
24 |
messages.append({"role": "assistant", "content": val[1]})
|
25 |
-
|
26 |
messages.append({"role": "user", "content": message})
|
27 |
-
|
28 |
response = ""
|
29 |
-
|
30 |
for message in client.chat_completion(
|
31 |
messages,
|
32 |
max_tokens=max_tokens,
|
@@ -35,13 +37,12 @@ def respond(
|
|
35 |
top_p=top_p,
|
36 |
):
|
37 |
token = message.choices[0].delta.content
|
38 |
-
|
39 |
response += token
|
40 |
yield response
|
41 |
|
42 |
-
|
43 |
"""
|
44 |
-
For information on how to customize the ChatInterface, peruse the gradio docs:
|
|
|
45 |
"""
|
46 |
demo = gr.ChatInterface(
|
47 |
respond,
|
@@ -59,6 +60,5 @@ demo = gr.ChatInterface(
|
|
59 |
],
|
60 |
)
|
61 |
|
62 |
-
|
63 |
if __name__ == "__main__":
|
64 |
-
demo.launch()
|
|
|
2 |
from huggingface_hub import InferenceClient
|
3 |
|
4 |
"""
|
5 |
+
For more information on `huggingface_hub` Inference API support, please check the docs:
|
6 |
+
https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
7 |
"""
|
|
|
8 |
|
9 |
+
# Using the new model "Phi-4-mini-instruct" instead of the original model
|
10 |
+
client = InferenceClient("Phi-4-mini-instruct")
|
11 |
|
12 |
def respond(
|
13 |
message,
|
|
|
18 |
top_p,
|
19 |
):
|
20 |
messages = [{"role": "system", "content": system_message}]
|
21 |
+
|
22 |
for val in history:
|
23 |
if val[0]:
|
24 |
messages.append({"role": "user", "content": val[0]})
|
25 |
if val[1]:
|
26 |
messages.append({"role": "assistant", "content": val[1]})
|
27 |
+
|
28 |
messages.append({"role": "user", "content": message})
|
29 |
+
|
30 |
response = ""
|
31 |
+
|
32 |
for message in client.chat_completion(
|
33 |
messages,
|
34 |
max_tokens=max_tokens,
|
|
|
37 |
top_p=top_p,
|
38 |
):
|
39 |
token = message.choices[0].delta.content
|
|
|
40 |
response += token
|
41 |
yield response
|
42 |
|
|
|
43 |
"""
|
44 |
+
For information on how to customize the ChatInterface, peruse the gradio docs:
|
45 |
+
https://www.gradio.app/docs/chatinterface
|
46 |
"""
|
47 |
demo = gr.ChatInterface(
|
48 |
respond,
|
|
|
60 |
],
|
61 |
)
|
62 |
|
|
|
63 |
if __name__ == "__main__":
|
64 |
+
demo.launch()
|