KJ24 commited on
Commit
d00f6f0
·
verified ·
1 Parent(s): 037a839

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -65,3 +65,9 @@ async def chunk_text(data: ChunkRequest):
65
  }
66
  except Exception as e:
67
  return {"error": str(e)}
 
 
 
 
 
 
 
65
  }
66
  except Exception as e:
67
  return {"error": str(e)}
68
+
69
+
70
+ if __name__ == "__main__":
71
+ import uvicorn
72
+ uvicorn.run("app:app", host="0.0.0.0", port=80)
73
+