Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -144,7 +144,7 @@ with gr.Blocks() as demo:
|
|
144 |
gr.Markdown("## HF Serverless LLM Inference API Status")
|
145 |
gr.Markdown(description)
|
146 |
search_box = gr.Textbox(label="Search for a model", placeholder="Type model name here...")
|
147 |
-
table = gr.Dataframe(value=display_table(True), headers="keys")
|
148 |
|
149 |
search_box.change(fn=search_models, inputs=search_box, outputs=table)
|
150 |
|
|
|
144 |
gr.Markdown("## HF Serverless LLM Inference API Status")
|
145 |
gr.Markdown(description)
|
146 |
search_box = gr.Textbox(label="Search for a model", placeholder="Type model name here...")
|
147 |
+
table = gr.Dataframe(value=display_table(use_cache=True), headers="keys")
|
148 |
|
149 |
search_box.change(fn=search_models, inputs=search_box, outputs=table)
|
150 |
|