Spaces:
Runtime error
Runtime error
stcoats
commited on
Commit
·
348f7e6
1
Parent(s):
756e034
Initial FastAPI + DuckDB frontend app
Browse files- app/main.py +4 -4
app/main.py
CHANGED
@@ -20,18 +20,18 @@ con = get_connection()
|
|
20 |
def search(text: str = Query("")):
|
21 |
query = text.replace("'", "''")
|
22 |
df = con.execute(
|
23 |
-
f
|
24 |
SELECT id, channel, video_id, speaker, start_time, end_time, upload_date, text, pos_tags
|
25 |
FROM data
|
26 |
WHERE text ILIKE '%{query}%'
|
27 |
LIMIT 100
|
28 |
-
|
29 |
).df()
|
30 |
return df.to_dict(orient="records")
|
31 |
|
32 |
@app.get("/audio/{id}")
|
33 |
-
def get_audio(id:
|
34 |
-
row = con.execute(f"SELECT audio FROM data WHERE id = {id}").fetchone()
|
35 |
if not row:
|
36 |
raise HTTPException(status_code=404, detail="Audio not found")
|
37 |
audio_bytes = row[0]
|
|
|
20 |
def search(text: str = Query("")):
|
21 |
query = text.replace("'", "''")
|
22 |
df = con.execute(
|
23 |
+
f"""
|
24 |
SELECT id, channel, video_id, speaker, start_time, end_time, upload_date, text, pos_tags
|
25 |
FROM data
|
26 |
WHERE text ILIKE '%{query}%'
|
27 |
LIMIT 100
|
28 |
+
"""
|
29 |
).df()
|
30 |
return df.to_dict(orient="records")
|
31 |
|
32 |
@app.get("/audio/{id}")
|
33 |
+
def get_audio(id: str): # changed from int to str
|
34 |
+
row = con.execute(f"SELECT audio FROM data WHERE id = '{id}'").fetchone()
|
35 |
if not row:
|
36 |
raise HTTPException(status_code=404, detail="Audio not found")
|
37 |
audio_bytes = row[0]
|