Update app.py
Browse files
app.py
CHANGED
@@ -33,4 +33,8 @@ interface = gr.Interface(
|
|
33 |
inputs=gr.inputs.File(file_type=['text/csv']),
|
34 |
outputs="text",
|
35 |
title="中文校對系統",
|
36 |
-
|
|
|
|
|
|
|
|
|
|
33 |
inputs=gr.inputs.File(file_type=['text/csv']),
|
34 |
outputs="text",
|
35 |
title="中文校對系統",
|
36 |
+
description="上傳一個CSV檔案,系統會檢查$符號前後的中文字是否有空格"
|
37 |
+
)
|
38 |
+
|
39 |
+
# 啟動 Gradio 介面
|
40 |
+
interface.launch()
|