Updated the speaking and interactive speaking to the new format

This commit is contained in:
Tiago Ribeiro
2024-06-18 10:02:03 +01:00
parent 0eddded560
commit cb49e15cb0
8 changed files with 51 additions and 41 deletions

View File

@@ -177,6 +177,8 @@ export interface InteractiveSpeakingExercise {
id: string;
type: "interactiveSpeaking";
title: string;
first_title?: string;
second_title?: string;
text: string;
prompts: {text: string; video_url: string}[];
userSolutions: {
@@ -185,6 +187,9 @@ export interface InteractiveSpeakingExercise {
evaluation?: InteractiveSpeakingEvaluation;
}[];
topic?: string;
first_topic?: string;
second_topic?: string;
variant?: "initial" | "final";
}
export interface FillBlanksExercise {