dinhhung1508 commited on
Commit
aaca5a7
1 Parent(s): d958fc0

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -0
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import requests
3
+ def gen(mess):
4
+ headers = {
5
+ 'api-key': '1f534f0c-532d-4122-9a89-c8a3e38fb8c2',
6
+ }
7
+
8
+ files = {
9
+ 'text': (None, f'Bạn là một người lạc quan hãy Viết theo hướng tích cực về một trường đại học cho câu "{mess}"'),
10
+ }
11
+
12
+ response = requests.post('https://api.deepai.org/api/text-generator', headers=headers, files=files)
13
+
14
+ print(response.json()['output'])
15
+ return response.json()['output']
16
+ def predict(message, history):
17
+ # output = message # debug mode
18
+
19
+ output = str(gen(message))
20
+ return output
21
+
22
+ demo = gr.ChatInterface(
23
+ predict,
24
+ title = f' DEEP AI FOR DETOXIC'
25
+ )
26
+
27
+ demo.launch(share=True)