embedding / main.py
iridescentX's picture
Update main.py
de21853 verified
raw
history blame contribute delete
891 Bytes
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://iridescentx-embedding.hf.space/v1"
>https://iridescentx-embedding.hf.space/v1</a
>
</li>
<li>
The API doc:
<a href="https://iridescentx-embedding.hf.space/docs"
>https://iridescentx-embedding.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"])
)