embeding_api / main.py
Arafath10's picture
Create main.py
496ed86
raw
history blame
318 Bytes
from fastapi import FastAPI, File, UploadFile
from fastapi.responses import StreamingResponse
import os
import io
temp = open("model/t.txt","w")
temp.write("aaaaaaaaaaaaa")
temp.close()
temp = open("model/t.txt","r")
app = FastAPI()
@app.get("/sample")
def read_root():
return {"message": str(temp.read())}