Spaces:
Runtime error
Runtime error
File size: 1,165 Bytes
6c4b607 f61c6a5 b7dc427 f61c6a5 579610e 1a6d216 df02cd1 1a6d216 b7dc427 1a6d216 f61c6a5 1a6d216 bd8aa61 7976529 1a6d216 9e9178e 6c4b607 f61c6a5 e0cb517 403610d e2e80ec f61c6a5 a887dc5 f61c6a5 |
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 |
import nh3
from fastapi import FastAPI, Request
from doc_searcher import DocSearcher
from suggestion_searcher import SuggestionSearcher
from huggingface_hub import login
from config import HUGGING_FACE_API_KEY, COLLECTION_NAME, API_KEY, COLLECTION_NAME_SUGGESTION
from fastapi.responses import JSONResponse
login(HUGGING_FACE_API_KEY)
app = FastAPI()
doc_searcher = DocSearcher(collection_name=COLLECTION_NAME)
suggestion_searcher = SuggestionSearcher(collection_name=COLLECTION_NAME_SUGGESTION)
ALLOWED_API_KEY = str(API_KEY)
@app.get("/api/search")
async def search(q: str):
xss = nh3.clean(q)
data = await doc_searcher.search(text=xss)
return data
@app.get("/api/suggestions")
async def get_suggestions(q: str):
xss = nh3.clean(q)
data = await suggestion_searcher.search(text=xss)
return data
# @app.middleware("http")
# async def api_key_authentication(request: Request, call_next):
# api_key = request.headers.get("X-API-KEY")
# if api_key != ALLOWED_API_KEY:
# return JSONResponse(
# status_code=403,
# content={"message": "Forbidden."}
# )
# return await call_next(request) |