Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -58,11 +58,11 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
58 |
|
59 |
|
60 |
demo = gr.ChatInterface(
|
61 |
-
inputs =
|
62 |
title = "Chatbot",
|
63 |
description = "Ask me anything!",
|
64 |
-
|
65 |
additional_inputs=[
|
|
|
66 |
gr.Textbox(value="You are a friendly and helpful Chatbot, be concise and straight to the point, avoid excessive reasoning.", label="System message"),
|
67 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
68 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
@@ -76,7 +76,7 @@ demo = gr.ChatInterface(
|
|
76 |
],
|
77 |
)
|
78 |
|
79 |
-
|
80 |
|
81 |
if __name__ == "__main__":
|
82 |
demo.launch()
|
|
|
58 |
|
59 |
|
60 |
demo = gr.ChatInterface(
|
61 |
+
inputs = respond,
|
62 |
title = "Chatbot",
|
63 |
description = "Ask me anything!",
|
|
|
64 |
additional_inputs=[
|
65 |
+
gr.Dropdown(["Qwen1.5", "Llama3-8b-Instruct", "Llama3.1-8b-Instruct"], label="Select Model"),
|
66 |
gr.Textbox(value="You are a friendly and helpful Chatbot, be concise and straight to the point, avoid excessive reasoning.", label="System message"),
|
67 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
68 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
|
|
76 |
],
|
77 |
)
|
78 |
|
79 |
+
|
80 |
|
81 |
if __name__ == "__main__":
|
82 |
demo.launch()
|