johnpaulbin commited on
Commit
dca1ca2
·
verified ·
1 Parent(s): 0e22e2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def handle_transcription(username):
20
  return jsonify({"status": "success", "message": "Transcription received"})
21
  elif request.method == 'GET':
22
  transcription = transcriptions.get(username, 'N/A')
23
- return jsonify({"transcription": transcription})
24
 
25
 
26
  @app.route('/')
 
20
  return jsonify({"status": "success", "message": "Transcription received"})
21
  elif request.method == 'GET':
22
  transcription = transcriptions.get(username, 'N/A')
23
+ return transcription
24
 
25
 
26
  @app.route('/')