Update app.py
Browse files
app.py
CHANGED
@@ -36,3 +36,12 @@ def pdf_to_word(pdf_file):
|
|
36 |
|
37 |
except Exception as e:
|
38 |
return traceback.format_exc()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
except Exception as e:
|
38 |
return traceback.format_exc()
|
39 |
+
|
40 |
+
# ูุฐุง ูู ุงูุณุทุฑ ุงูู
ูู
: ูุฌุจ ุฃู ูููู ุงุณู
ุงูู
ุชุบูุฑ app
|
41 |
+
app = gr.Interface(
|
42 |
+
fn=pdf_to_word,
|
43 |
+
inputs=gr.File(label="๐ ุงุฑูุน ู
ูู PDF"),
|
44 |
+
outputs=gr.File(label="๐ฅ ุชุญู
ูู Word ุงููุงุชุฌ"),
|
45 |
+
title="๐ ู
ุญูู PDF ุฅูู Word (ุตูุฑู)",
|
46 |
+
description="ูุฐุง ุงูู
ุญูู ูููู
ุจุชุญููู ูู ุตูุญุฉ ูู PDF ุฅูู ุตูุฑุฉ ุซู
ูุถุนูุง ุฏุงุฎู ู
ูู Word."
|
47 |
+
)
|