Spaces:
Runtime error
Runtime error
peter.lin commited on
Commit ·
5bd3b89
1
Parent(s): 2d6f925
fix: :pencil2: fix version display in webui
Browse files- webui/ui.py +1 -1
webui/ui.py
CHANGED
|
@@ -6,7 +6,7 @@ from edu_assistant import version
|
|
| 6 |
|
| 7 |
with gr.Blocks() as ui:
|
| 8 |
with gr.Row():
|
| 9 |
-
gr.Markdown(f" v{version}")
|
| 10 |
|
| 11 |
with gr.Tab(label="答疑"):
|
| 12 |
qa_ui.render()
|
|
|
|
| 6 |
|
| 7 |
with gr.Blocks() as ui:
|
| 8 |
with gr.Row():
|
| 9 |
+
gr.Markdown(f" v{version.VERSION}")
|
| 10 |
|
| 11 |
with gr.Tab(label="答疑"):
|
| 12 |
qa_ui.render()
|