Spaces:
Sleeping
Sleeping
File size: 1,209 Bytes
c8c7a9e |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 |
from fastapi import FastAPI, HTTPException
from fastapi.middleware.cors import CORSMiddleware
# from firebase import db
# from firebase_admin import auth, storage
from pydantic import BaseModel
from typing import Dict, List
import os
from source import main
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=['*'], # Allow only localhost:5173
allow_credentials=True,
allow_methods=['*'],
allow_headers=['*']
)
class QueryChat(BaseModel):
userId: str
files: List
query: str
# bucket = storage.bucket("verbisense.appspot.com")
@app.get("/")
def read_root():
return {"message": "Welcome to Verbisense!"}
@app.post("/chat")
async def chat(data: QueryChat):
try:
print("userId : ",data.userId)
print("files : ",data.files)
print("query : ",data.query)
response = main(data.files,data.query)
print("\n" + "="*50)
print(response)
print("="*50)
if not response:
return False
return {"query":data.query,"response":response}
except Exception as e:
raise HTTPException(status_code=500, detail=f"An error occurred: {e}") |