Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -344,4 +344,8 @@ def query_gemini_api(transcription):
|
|
| 344 |
|
| 345 |
except requests.exceptions.RequestException as e:
|
| 346 |
print(f"Error querying Gemini API: {e}")
|
| 347 |
-
return {"error": str(e)}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 344 |
|
| 345 |
except requests.exceptions.RequestException as e:
|
| 346 |
print(f"Error querying Gemini API: {e}")
|
| 347 |
+
return {"error": str(e)}
|
| 348 |
+
|
| 349 |
+
|
| 350 |
+
if __name__ == '__main__':
|
| 351 |
+
app.run(debug=True)
|