Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
-
from threading import Thread
|
2 |
import gradio as gr
|
3 |
from gradio_client import Client as GrClient
|
4 |
-
import inspect
|
5 |
from gradio import routes
|
6 |
from typing import List, Type
|
7 |
|
@@ -12,7 +10,6 @@ import datetime
|
|
12 |
import requests, json
|
13 |
|
14 |
loop = asyncio.get_event_loop()
|
15 |
-
gradio_client = GrClient(os.environ.get('GrClient_url'), serialize=False)
|
16 |
# Monkey patch
|
17 |
def get_types(cls_set: List[Type], component: str):
|
18 |
docset = []
|
@@ -32,64 +29,14 @@ def get_types(cls_set: List[Type], component: str):
|
|
32 |
return docset, types
|
33 |
routes.get_types = get_types
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
def chat():
|
39 |
-
while True:
|
40 |
-
time.sleep(1)
|
41 |
-
global q
|
42 |
-
if not q.empty():
|
43 |
-
arr = q.get()
|
44 |
-
start = time.time()
|
45 |
-
print("μλ΅ μμ\nx:"+ arr[0] +"\nid:"+ arr[1] +"\ncdata:" + arr[2] + "\ncollback_url : " + arr[3])
|
46 |
-
result = gradio_client.predict(
|
47 |
-
arr[0],
|
48 |
-
# str representing input in 'User input' Textbox component
|
49 |
-
arr[1],
|
50 |
-
arr[2],
|
51 |
-
fn_index=0
|
52 |
-
)
|
53 |
-
|
54 |
-
end = time.time()
|
55 |
-
|
56 |
-
|
57 |
-
sec = (end - start)
|
58 |
-
result_list = str(datetime.timedelta(seconds=sec)).split(".")
|
59 |
-
print("μλ΅ μκ° : " + result_list[0] +"\nresult:"+ result)
|
60 |
-
|
61 |
-
if result.split(":")[0]=="μλ΄μ":
|
62 |
-
result = result.split(":")[1]
|
63 |
-
|
64 |
-
headers = {'Content-Type': 'application/json'}
|
65 |
-
body = {
|
66 |
-
"url" : arr[3],
|
67 |
-
"data" : result
|
68 |
-
}
|
69 |
-
|
70 |
-
if arr[3] != "Asia/Seoul":
|
71 |
-
response_collback = requests.post("https://9174963504.for-seoul.synctreengine.com/call", headers=headers, data=json.dumps(body))
|
72 |
-
print(response_collback)
|
73 |
-
|
74 |
-
th_a = Thread(target = chat)
|
75 |
-
th_a.daemon = True
|
76 |
-
th_a.start()
|
77 |
-
|
78 |
-
# App code
|
79 |
-
def res(x, id, cdata, url):
|
80 |
-
global q
|
81 |
-
|
82 |
-
arr = [x, id, str(cdata.split(",", 1)[0]), url]
|
83 |
-
q.put(arr)
|
84 |
-
|
85 |
-
print("\n_Done\n\n")
|
86 |
-
return "Done"
|
87 |
|
88 |
with gr.Blocks() as demo:
|
89 |
count = 0
|
90 |
aa = gr.Interface(
|
91 |
-
fn=
|
92 |
-
inputs=["text"
|
93 |
outputs="text",
|
94 |
description="chat",
|
95 |
)
|
|
|
|
|
1 |
import gradio as gr
|
2 |
from gradio_client import Client as GrClient
|
|
|
3 |
from gradio import routes
|
4 |
from typing import List, Type
|
5 |
|
|
|
10 |
import requests, json
|
11 |
|
12 |
loop = asyncio.get_event_loop()
|
|
|
13 |
# Monkey patch
|
14 |
def get_types(cls_set: List[Type], component: str):
|
15 |
docset = []
|
|
|
29 |
return docset, types
|
30 |
routes.get_types = get_types
|
31 |
|
32 |
+
def chat(x):
|
33 |
+
return f"api μλ΅μ
λλ€. μ
λ ₯:{x}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
with gr.Blocks() as demo:
|
36 |
count = 0
|
37 |
aa = gr.Interface(
|
38 |
+
fn=chat,
|
39 |
+
inputs=["text"],
|
40 |
outputs="text",
|
41 |
description="chat",
|
42 |
)
|