usmanyousaf commited on
Commit
c60e75c
·
verified ·
1 Parent(s): 172d29c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +50 -40
app.py CHANGED
@@ -1,10 +1,9 @@
1
  import os
2
  from flask import Flask, request, render_template, jsonify
3
  from groq import Groq
4
- import json
5
 
6
  # Set up the Groq client
7
- os.environ["GROQ_API_KEY"] = "your_groq_api_key_here" # Replace with your actual API key
8
  client = Groq(api_key=os.environ["GROQ_API_KEY"])
9
 
10
  app = Flask(__name__)
@@ -24,69 +23,80 @@ def transcribe_audio():
24
  # Transcribe the audio based on the selected language
25
  transcription = client.audio.transcriptions.create(
26
  file=(audio_data.filename, audio_data.read()),
27
- model="whisper-large-v3", # You can change this model if needed
 
28
  response_format="text",
29
  language=selected_language,
30
  )
31
 
32
- return jsonify({'transcription': transcription['text']}) # Fix to extract text
33
  except Exception as e:
34
- return str(e), 500
35
 
36
  # Route to check grammar and vocabulary of the transcription
37
  @app.route('/check_grammar', methods=['POST'])
38
  def check_grammar():
39
- transcription = request.form['transcription']
40
- selected_language = request.form['language']
41
 
42
- if not transcription:
43
- return "No transcription available."
44
 
45
  try:
46
- # Grammar check with scoring and concise feedback
47
- grammar_prompt = f"""
48
- Check the grammar of the following text in {selected_language}:
49
- \"\"\"
50
- {transcription}
51
- \"\"\"
52
- Provide a score from 1 to 10 and a concise feedback (1-1.5 lines) without including the score in the feedback.
53
- Return the result in JSON format with keys 'score' and 'feedback'.
54
- """
55
  grammar_check_response = client.chat.completions.create(
56
- model="gemma-7b-it", # Change the model if needed
57
  messages=[{"role": "user", "content": grammar_prompt}]
58
  )
59
- grammar_response_content = grammar_check_response.choices[0].message.content.strip()
60
- grammar_result = json.loads(grammar_response_content)
61
- grammar_score = grammar_result.get('score', '')
62
- grammar_feedback = grammar_result.get('feedback', '')
63
-
64
- # Vocabulary check with scoring and concise feedback
65
- vocabulary_prompt = f"""
66
- Check the vocabulary accuracy of the following text in {selected_language}:
67
- \"\"\"
68
- {transcription}
69
- \"\"\"
70
- Provide a score from 1 to 10 and a concise feedback (1-1.5 lines) without including the score in the feedback.
71
- Return the result in JSON format with keys 'score' and 'feedback'.
72
- """
73
  vocabulary_check_response = client.chat.completions.create(
74
- model="llama3-8b-8192", # Change the model if needed
75
  messages=[{"role": "user", "content": vocabulary_prompt}]
76
  )
77
- vocabulary_response_content = vocabulary_check_response.choices[0].message.content.strip()
78
- vocabulary_result = json.loads(vocabulary_response_content)
79
- vocabulary_score = vocabulary_result.get('score', '')
80
- vocabulary_feedback = vocabulary_result.get('feedback', '')
 
81
 
82
  return jsonify({
83
  'grammar_feedback': grammar_feedback,
84
- 'grammar_score': grammar_score,
85
  'vocabulary_feedback': vocabulary_feedback,
 
86
  'vocabulary_score': vocabulary_score
87
  })
88
  except Exception as e:
89
- return str(e), 500
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
  if __name__ == "__main__":
92
  app.run(debug=True)
 
1
  import os
2
  from flask import Flask, request, render_template, jsonify
3
  from groq import Groq
 
4
 
5
  # Set up the Groq client
6
+ os.environ["GROQ_API_KEY"] = "your_groq_api_key_here"
7
  client = Groq(api_key=os.environ["GROQ_API_KEY"])
8
 
9
  app = Flask(__name__)
 
23
  # Transcribe the audio based on the selected language
24
  transcription = client.audio.transcriptions.create(
25
  file=(audio_data.filename, audio_data.read()),
26
+ model="whisper-large-v3",
27
+ prompt="Transcribe the audio accurately based on the selected language.",
28
  response_format="text",
29
  language=selected_language,
30
  )
31
 
32
+ return jsonify({'transcription': transcription})
33
  except Exception as e:
34
+ return jsonify({'error': str(e)}), 500
35
 
36
  # Route to check grammar and vocabulary of the transcription
37
  @app.route('/check_grammar', methods=['POST'])
38
  def check_grammar():
39
+ transcription = request.form.get('transcription')
40
+ selected_language = request.form.get('language')
41
 
42
+ if not transcription or not selected_language:
43
+ return jsonify({'error': 'Missing transcription or language selection'}), 400
44
 
45
  try:
46
+ # Grammar check
47
+ grammar_prompt = (
48
+ f"Briefly check the grammar of the following text in {selected_language}: {transcription}. "
49
+ "Identify any word that does not belong to the selected language and flag it. Based on the number of incorrect words, also check the grammar deeply and carefully. "
50
+ "Provide a score from 1 to 10 based on the grammar accuracy, reducing points for incorrect words and make sure to output the score on a new line after two line breaks like 'SCORE='."
51
+ )
52
+
 
 
53
  grammar_check_response = client.chat.completions.create(
54
+ model="llama3-groq-70b-8192-tool-use-preview",
55
  messages=[{"role": "user", "content": grammar_prompt}]
56
  )
57
+ grammar_feedback = grammar_check_response.choices[0].message.content.strip()
58
+
59
+ # Vocabulary check
60
+ vocabulary_prompt = (
61
+ f"Check the vocabulary accuracy of the following text in {selected_language}: {transcription}. "
62
+ "Identify any word that does not belong to the selected language and flag it. Based on the number of incorrect words, also check the grammar deeply and carefully. "
63
+ "Provide a score from 1 to 10 based on the vocabulary accuracy reducing points for incorrect words and make sure to output the score on a new line after two line breaks like 'SCORE='."
64
+ )
65
+
 
 
 
 
 
66
  vocabulary_check_response = client.chat.completions.create(
67
+ model="llama-3.1-70b-versatile",
68
  messages=[{"role": "user", "content": vocabulary_prompt}]
69
  )
70
+ vocabulary_feedback = vocabulary_check_response.choices[0].message.content.strip()
71
+
72
+ # Return feedback and scores
73
+ grammar_score = calculate_score(grammar_feedback)
74
+ vocabulary_score = calculate_score(vocabulary_feedback)
75
 
76
  return jsonify({
77
  'grammar_feedback': grammar_feedback,
 
78
  'vocabulary_feedback': vocabulary_feedback,
79
+ 'grammar_score': grammar_score,
80
  'vocabulary_score': vocabulary_score
81
  })
82
  except Exception as e:
83
+ return jsonify({'error': str(e)}), 500
84
+
85
+ def calculate_score(feedback):
86
+ """
87
+ Calculate score based on feedback content.
88
+ This function searches for the keyword 'SCORE=' or similar variations
89
+ (SCORE:, score:, etc.) and extracts the score value.
90
+ """
91
+ import re
92
+ match = re.search(r'(SCORE=|score=|SCORE:|score:|SCORE = )\s*(\d+)', feedback)
93
+
94
+ if match:
95
+ # Extract and return the score as an integer
96
+ return int(match.group(2))
97
+
98
+ # Return a default score of 0 if no score is found in the feedback
99
+ return 0
100
 
101
  if __name__ == "__main__":
102
  app.run(debug=True)