Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,11 +1,25 @@
|
|
| 1 |
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: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
| 6 |
-
"""
|
| 7 |
-
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
| 8 |
|
|
|
|
| 9 |
|
| 10 |
def respond(
|
| 11 |
message,
|
|
@@ -35,30 +49,21 @@ 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: https://www.gradio.app/docs/chatinterface
|
| 45 |
-
"""
|
| 46 |
demo = gr.ChatInterface(
|
| 47 |
respond,
|
| 48 |
additional_inputs=[
|
| 49 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 50 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
| 51 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
| 52 |
-
gr.Slider(
|
| 53 |
-
minimum=0.1,
|
| 54 |
-
maximum=1.0,
|
| 55 |
-
value=0.95,
|
| 56 |
-
step=0.05,
|
| 57 |
-
label="Top-p (nucleus sampling)",
|
| 58 |
-
),
|
| 59 |
],
|
|
|
|
|
|
|
| 60 |
)
|
| 61 |
|
| 62 |
-
|
| 63 |
if __name__ == "__main__":
|
| 64 |
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
from huggingface_hub import InferenceClient
|
| 3 |
|
| 4 |
+
# Custom background CSS with semi-transparent panel
|
| 5 |
+
css = """
|
| 6 |
+
body {
|
| 7 |
+
background-image: url('https://cdn-uploads.huggingface.co/production/uploads/67351c643fe51cb1aa28f2e5/wuyd5UYTh9jPrMJGmV9yC.jpeg');
|
| 8 |
+
background-size: cover;
|
| 9 |
+
background-position: center;
|
| 10 |
+
background-repeat: no-repeat;
|
| 11 |
+
}
|
| 12 |
+
#chat-container {
|
| 13 |
+
background-color: rgba(255, 255, 255, 0.85);
|
| 14 |
+
padding: 2rem;
|
| 15 |
+
border-radius: 12px;
|
| 16 |
+
max-width: 700px;
|
| 17 |
+
margin: auto;
|
| 18 |
+
box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
|
| 19 |
+
}
|
| 20 |
"""
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
+
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
| 23 |
|
| 24 |
def respond(
|
| 25 |
message,
|
|
|
|
| 49 |
top_p=top_p,
|
| 50 |
):
|
| 51 |
token = message.choices[0].delta.content
|
|
|
|
| 52 |
response += token
|
| 53 |
yield response
|
| 54 |
|
| 55 |
|
|
|
|
|
|
|
|
|
|
| 56 |
demo = gr.ChatInterface(
|
| 57 |
respond,
|
| 58 |
additional_inputs=[
|
| 59 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 60 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
| 61 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
| 62 |
+
gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
],
|
| 64 |
+
css=css,
|
| 65 |
+
elem_id="chat-container"
|
| 66 |
)
|
| 67 |
|
|
|
|
| 68 |
if __name__ == "__main__":
|
| 69 |
demo.launch()
|