alxd commited on
Commit ·
e1b6d21
1
Parent(s): eb6908c
restriction on gradio only on current version
Browse files- README.md +1 -1
- pdf2txt.py +1 -1
README.md
CHANGED
|
@@ -4,7 +4,7 @@ emoji: 📖
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: pdf2txt.py
|
| 9 |
pinned: false
|
| 10 |
---
|
|
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 3.40.0
|
| 8 |
app_file: pdf2txt.py
|
| 9 |
pinned: false
|
| 10 |
---
|
pdf2txt.py
CHANGED
|
@@ -406,7 +406,7 @@ with gr.Blocks() as app:
|
|
| 406 |
response_output = gr.Textbox(label="Response", interactive=False)
|
| 407 |
token_info = gr.Textbox(label="Token Info", interactive=False)
|
| 408 |
with gr.Column(scale=1):
|
| 409 |
-
status_output = gr.HTML(label="Job Status")
|
| 410 |
job_id_display = gr.Textbox(label="Job ID", interactive=False)
|
| 411 |
input_tokens_display = gr.Textbox(label="Input Tokens", interactive=False)
|
| 412 |
output_tokens_display = gr.Textbox(label="Output Tokens", interactive=False)
|
|
|
|
| 406 |
response_output = gr.Textbox(label="Response", interactive=False)
|
| 407 |
token_info = gr.Textbox(label="Token Info", interactive=False)
|
| 408 |
with gr.Column(scale=1):
|
| 409 |
+
status_output = gr.HTML(label="Job Status", interactive=False)
|
| 410 |
job_id_display = gr.Textbox(label="Job ID", interactive=False)
|
| 411 |
input_tokens_display = gr.Textbox(label="Input Tokens", interactive=False)
|
| 412 |
output_tokens_display = gr.Textbox(label="Output Tokens", interactive=False)
|