Mercurial Hosting > lang
diff src/lib/Course.luan @ 69:f5e72f2d1025
add stt_prompt
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 23 Aug 2025 07:07:59 -0600 |
parents | 1793510fa36a |
children |
line wrap: on
line diff
--- a/src/lib/Course.luan Sat Aug 23 04:32:17 2025 -0600 +++ b/src/lib/Course.luan Sat Aug 23 07:07:59 2025 -0600 @@ -27,6 +27,7 @@ tts_instructions = doc.tts_instructions has_ruby = doc.has_ruby == "true" description = doc.description or "" + stt_prompt = doc.stt_prompt or "" } end @@ -43,6 +44,7 @@ tts_instructions = course.tts_instructions or error() has_ruby = course.has_ruby and "true" or nil description = course.description or error() + stt_prompt = course.stt_prompt or error() } end