ChingCL commited on
Commit
b331472
·
verified ·
1 Parent(s): 86e4836

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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
- descriptio
 
 
 
 
 
33
  inputs=gr.inputs.File(file_type=['text/csv']),
34
  outputs="text",
35
  title="中文校對系統",
36
+ description="上傳一個CSV檔案,系統會檢查$符號前後的中文字是否有空格"
37
+ )
38
+
39
+ # 啟動 Gradio 介面
40
+ interface.launch()