From a8b46160d4f1a8627027b4072787b3e6e39a9e79 Mon Sep 17 00:00:00 2001 From: Cristiano Ferreira Date: Thu, 27 Jun 2024 22:31:57 +0100 Subject: [PATCH] Minor fixes to speaking. --- app.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index e0afe36..b1d302d 100644 --- a/app.py +++ b/app.py @@ -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. "