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. "