Spaces:
Running
Running
File size: 875 Bytes
3892750 |
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 |
from open.text.embeddings.server.app import create_app
from fastapi.responses import HTMLResponse
import os
app = create_app()
# Read the content of index.html once and store it in memory
# with open("index.html", "r") as f: content = f.read()
content = """
<ul>
<li>
The API endpoint:
<a href="https://mikeee-emb384-oai.hf.space/v1"
>https://mikeee-emb384-oai.hf.space/v1</a
>
</li>
<li>
The API doc:
<a href="https://mikeee-emb384-oai.hf.space/docs"
>https://mikeee-emb384-oai.hf.space/docs</a
>
</li>
</ul>
"""
@app.get("/", response_class=HTMLResponse)
async def read_items():
return content
if __name__ == "__main__":
import uvicorn
uvicorn.run(app,
host=os.environ["HOST"],
port=int(os.environ["PORT"])
)
|