Spaces:
Runtime error
Runtime error
from fastapi import FastAPI, Query, HTTPException | |
from fastapi.responses import StreamingResponse | |
from fastapi.middleware.cors import CORSMiddleware | |
from app.duckdb_utils import get_connection | |
import pandas as pd | |
import io | |
app = FastAPI() | |
app.add_middleware( | |
CORSMiddleware, | |
allow_origins=["*"], | |
allow_methods=["*"], | |
allow_headers=["*"], | |
) | |
con = get_connection() | |
def search(text: str = Query("")): | |
query = text.replace("'", "''") | |
df = con.execute( | |
f""" | |
SELECT id, channel, video_id, speaker, start_time, end_time, upload_date, text, pos_tags | |
FROM data | |
WHERE text ILIKE '%{query}%' | |
LIMIT 100 | |
""" | |
).df() | |
return df.to_dict(orient="records") | |
def get_audio(id: str): # changed from int to str | |
row = con.execute(f"SELECT audio FROM data WHERE id = '{id}'").fetchone() | |
if not row: | |
raise HTTPException(status_code=404, detail="Audio not found") | |
audio_bytes = row[0] | |
return StreamingResponse(io.BytesIO(audio_bytes), media_type="audio/mpeg") | |