Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,8 @@ with gr.Blocks() as demo:
|
|
57 |
input_text = gr.Textbox(label = "Write your riddle here", placeholder="Type here the riddles to see if LM can solve the questions", lines=4)
|
58 |
with gr.Row():
|
59 |
btn = gr.Button("Laguage model think brrr ...")
|
60 |
-
|
|
|
61 |
example_text = gr.Dataset(components=[input_text], samples=examples)
|
62 |
example_text.click(fn=set_example,
|
63 |
inputs = example_text,
|
|
|
57 |
input_text = gr.Textbox(label = "Write your riddle here", placeholder="Type here the riddles to see if LM can solve the questions", lines=4)
|
58 |
with gr.Row():
|
59 |
btn = gr.Button("Laguage model think brrr ...")
|
60 |
+
|
61 |
+
gr.Markdown("Note due to high number if visitors, inference API rate limit is too high and sometimes results in error, looking for solutions around this problem, thanks for understanding 🤗")
|
62 |
example_text = gr.Dataset(components=[input_text], samples=examples)
|
63 |
example_text.click(fn=set_example,
|
64 |
inputs = example_text,
|