File size: 994 Bytes
aabae8d
 
 
 
 
 
eabc9cd
 
aabae8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import os

APP_DOMAIN = "http://localhost:8000"

TEMP_DIR = os.path.join(os.getcwd(), 'temp')

DATA_DIR = os.path.join(os.getcwd(), 'data')

DOC_TEMPLATE = f'''
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>GDSC AI Service</title>
  </head>
  <body>
    <img src="https://seeklogo.com/images/G/google-developers-logo-F8BF3155AC-seeklogo.com.png" alt="logo" width="100">
    <h1>GDSC AI Back-end Service</h1>
    <span>Served URL: </span>
    <a href="{APP_DOMAIN}">{APP_DOMAIN}</a>
    <ul>
      <li>Remove Background Service [POST]</li>
      <code>{APP_DOMAIN}/api/rembg</code>
    </ul>
    <ul>
      <li>Image to Text [POST]</li>
      <code>{APP_DOMAIN}/api/img2text</code>
    </ul>
    <ul>
      <li>Chats [POST]</li>
      <code>{APP_DOMAIN}/api/chats</code>
    </ul>
    <ul>
      <li>Face Detection [POST]</li>
      <code>{APP_DOMAIN}/api/fd</code>
    </ul>
  </body>
</html>
'''