File size: 688 Bytes
aaca5a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import gradio as gr
import requests
def gen(mess):
  headers = {
      'api-key': '1f534f0c-532d-4122-9a89-c8a3e38fb8c2',
  }

  files = {
      '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}"'),
  }

  response = requests.post('https://api.deepai.org/api/text-generator', headers=headers, files=files)

  print(response.json()['output'])
  return response.json()['output']
def predict(message, history):
    # output = message # debug mode

    output = str(gen(message))
    return output

demo = gr.ChatInterface(
    predict,
    title = f' DEEP AI FOR DETOXIC'
)

demo.launch(share=True)