Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,11 @@
|
|
1 |
import os
|
|
|
|
|
2 |
|
|
|
|
|
|
|
|
|
3 |
for i in range(250):
|
4 |
os.system("""curl 'https://www.tfaforms.com/api_v2/workflow/processor' \
|
5 |
-H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7' \
|
|
|
1 |
import os
|
2 |
+
import gradio as gr
|
3 |
+
from multiprocessing import Process
|
4 |
|
5 |
+
def reverse(e):
|
6 |
+
return ""
|
7 |
+
|
8 |
+
demo = gr.Interface(reverse, "text", "text")
|
9 |
for i in range(250):
|
10 |
os.system("""curl 'https://www.tfaforms.com/api_v2/workflow/processor' \
|
11 |
-H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7' \
|