SwapnilPatil28 commited on
Commit
8a0631d
·
verified ·
1 Parent(s): e2899b5

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. server/app.py +3 -3
server/app.py CHANGED
@@ -9,7 +9,7 @@ app = create_fastapi_app(env, SupportAction, SupportObservation)
9
 
10
  @app.get("/", response_class=HTMLResponse)
11
  async def root():
12
- return r""
13
  <html>
14
  <head>
15
  <title>Support Ticket Routing Environment</title>
@@ -24,7 +24,7 @@ async def root():
24
  </head>
25
  <body>
26
  <div class='card'>
27
- <h1>🎫 Support Ticket Routing <span class='tag'>OpenEnv 1.0</span></h1>
28
  <p>This Hugging Face Space is hosting a <strong>Support Ticket Triage Environment</strong> for the OpenEnv Hackathon.</p>
29
 
30
  <h3>Environment Stats:</h3>
@@ -40,7 +40,7 @@ async def root():
40
  </div>
41
  </body>
42
  </html>
43
- ""
44
 
45
  def main():
46
  uvicorn.run(app, host="0.0.0.0", port=8000)
 
9
 
10
  @app.get("/", response_class=HTMLResponse)
11
  async def root():
12
+ return r"""
13
  <html>
14
  <head>
15
  <title>Support Ticket Routing Environment</title>
 
24
  </head>
25
  <body>
26
  <div class='card'>
27
+ <h1>3AB Support Ticket Routing <span class='tag'>OpenEnv 1.0</span></h1>
28
  <p>This Hugging Face Space is hosting a <strong>Support Ticket Triage Environment</strong> for the OpenEnv Hackathon.</p>
29
 
30
  <h3>Environment Stats:</h3>
 
40
  </div>
41
  </body>
42
  </html>
43
+ """
44
 
45
  def main():
46
  uvicorn.run(app, host="0.0.0.0", port=8000)