Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ def check_rand(inp, val):
|
|
65 |
else:
|
66 |
return gr.Slider(label="Seed", minimum=1, maximum=1111111111111111, value=int(val))
|
67 |
|
68 |
-
with gr.Blocks as app: # Add auth here
|
69 |
gr.HTML("""<center><h1 style='font-size:xx-large;'>Chatbot</h1><br><h3>running on Huggingface Inference Client</h3><br><h7>EXPERIMENTAL""")
|
70 |
with gr.Row():
|
71 |
chat = gr.Chatbot(height=500)
|
|
|
65 |
else:
|
66 |
return gr.Slider(label="Seed", minimum=1, maximum=1111111111111111, value=int(val))
|
67 |
|
68 |
+
with gr.Blocks() as app: # Add auth here
|
69 |
gr.HTML("""<center><h1 style='font-size:xx-large;'>Chatbot</h1><br><h3>running on Huggingface Inference Client</h3><br><h7>EXPERIMENTAL""")
|
70 |
with gr.Row():
|
71 |
chat = gr.Chatbot(height=500)
|