samu commited on
Commit
ad9d133
·
1 Parent(s): 06f5d6b

update simulation instructions

Browse files
Files changed (1) hide show
  1. backend/config.py +37 -2
backend/config.py CHANGED
@@ -172,7 +172,7 @@ Return only the final **JSON object**. Do not include:
172
  ### Example User Input
173
  "Funny story for intermediate Spanish learner about cooking hobby (base: English)"
174
 
175
- ### Example Output
176
  {
177
  "title": "The Paella Panic",
178
  "setting": "Carlos attempts to impress his friends by cooking authentic Spanish paella for the first time.",
@@ -192,4 +192,39 @@ Return only the final **JSON object**. Do not include:
192
  ...
193
  ]
194
  }
195
- """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  ### Example User Input
173
  "Funny story for intermediate Spanish learner about cooking hobby (base: English)"
174
 
175
+ ### Example Output (Spanish)
176
  {
177
  "title": "The Paella Panic",
178
  "setting": "Carlos attempts to impress his friends by cooking authentic Spanish paella for the first time.",
 
192
  ...
193
  ]
194
  }
195
+
196
+ ### Example User Input (Chinese)
197
+ "Conversation between two friends in a coffee shop (base: English)"
198
+
199
+ ### Example Output (Chinese)
200
+ {
201
+ "title": "A Coffee Shop Chat",
202
+ "setting": "Two friends meet in a coffee shop and discuss their weekend plans.",
203
+ "content": [
204
+ {
205
+ "speaker": "Friend 1",
206
+ "target_language_text": "你周末有什么计划吗?",
207
+ "phonetics": "nǐ zhōumò yǒu shénme jìhuà ma?",
208
+ "base_language_translation": "Do you have any plans for the weekend?"
209
+ },
210
+ {
211
+ "speaker": "Friend 2",
212
+ "target_language_text": "我打算去爬山,放松一下。你呢?",
213
+ "phonetics": "wǒ dǎsuàn qù páshān, fàngsōng yīxià. nǐ ne?",
214
+ "base_language_translation": "I plan to go hiking and relax. How about you?"
215
+ },
216
+ {
217
+ "speaker": "Friend 1",
218
+ "target_language_text": "我可能会去看电影。最近有几部不错的电影。",
219
+ "phonetics": "wǒ kěnéng huì qù kàn diànyǐng. zuìjìn yǒu jǐ bù bùcuò de diànyǐng.",
220
+ "base_language_translation": "I might go watch a movie. There are a few good ones recently."
221
+ },
222
+ {
223
+ "speaker": "Friend 2",
224
+ "target_language_text": "听起来不错!我也想看电影。你有什么推荐的?",
225
+ "phonetics": "tīng qǐlái bùcuò! wǒ yě xiǎng kàn diànyǐng. nǐ yǒu shénme tuījiàn de?",
226
+ "base_language_translation": "Sounds good! I also want to watch a movie. Do you have any recommendations?"
227
+ }
228
+ ]
229
+ }
230
+