Spaces:
Runtime error
Runtime error
fix: Moved interface to Blocks
Browse files
app.py
CHANGED
|
@@ -139,5 +139,8 @@ iface = gr.ChatInterface(
|
|
| 139 |
title="LLAMA CPP Template"
|
| 140 |
)
|
| 141 |
|
|
|
|
|
|
|
|
|
|
| 142 |
logging.info("Starting Application")
|
| 143 |
-
|
|
|
|
| 139 |
title="LLAMA CPP Template"
|
| 140 |
)
|
| 141 |
|
| 142 |
+
with gr.Blocks() as demo:
|
| 143 |
+
iface.render()
|
| 144 |
+
|
| 145 |
logging.info("Starting Application")
|
| 146 |
+
demo.launch(show_api=False)
|