Minor fixes to speaking.

This commit is contained in:
Cristiano Ferreira
2024-06-27 22:31:57 +01:00
parent 640039d372
commit a8b46160d4

6
app.py
View File

@@ -600,7 +600,7 @@ def get_speaking_task_1_question():
"first_topic": "topic 1",
"second_topic": "topic 2",
"questions": [
"Introductory question, should start with a greeting and introduce a question about the first topic.",
"Introductory question, should start with a greeting and introduce a question about the first topic, starting the topic with 'Let's talk about x' and then the question.",
"Follow up question about the first topic",
"Follow up question about the first topic",
"Question about second topic",
@@ -1144,7 +1144,9 @@ def generate_video_2():
question = data.get("question")
suffix = data.get("suffix", "")
question = question + " In your answer you should consider: " + " ".join(prompts) + suffix
# Removed as the examiner should not say what is on the card.
# question = question + " In your answer you should consider: " + " ".join(prompts) + suffix
question = question + "\nYou have 1 minute to take notes."
request_id = str(uuid.uuid4())
logging.info("POST - generate_video_2 - Received request to generate video 2. "