Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import re
|
2 |
import gradio as gr
|
|
|
3 |
|
4 |
import torch
|
5 |
from transformers import DonutProcessor, VisionEncoderDecoderModel
|
@@ -18,7 +19,7 @@ def process_document(image):
|
|
18 |
im1 = im1.save("./geeks.jpg")
|
19 |
|
20 |
#send notification through telegram
|
21 |
-
bot = Bot(
|
22 |
bot.send_message('OK')
|
23 |
|
24 |
# prepare encoder inputs
|
|
|
1 |
import re
|
2 |
import gradio as gr
|
3 |
+
import os
|
4 |
|
5 |
import torch
|
6 |
from transformers import DonutProcessor, VisionEncoderDecoderModel
|
|
|
19 |
im1 = im1.save("./geeks.jpg")
|
20 |
|
21 |
#send notification through telegram
|
22 |
+
bot = Bot(os.getenv('TELEGRAM_BOT_TOKEN'))
|
23 |
bot.send_message('OK')
|
24 |
|
25 |
# prepare encoder inputs
|