comparison src/view_course.html.luan @ 47:3cd6f36c81d4

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 15 Aug 2025 08:00:22 +0900
parents 176a182c02cf
children a119fc092f42
comparison
equal deleted inserted replaced
46:cc20eebaa74a 47:3cd6f36c81d4
38 38
39 <h2><%= course.name_html() %></h2> 39 <h2><%= course.name_html() %></h2>
40 40
41 <h3><%= course.language_name() %></h3> 41 <h3><%= course.language_name() %></h3>
42 42
43 <p><a href="new_chat.red?course=<%=course.id%>">new chat</a></p>
44
43 <h4>AI system prompt</h4> 45 <h4>AI system prompt</h4>
44 <pre><%=html_encode(course.ai_system_prompt)%></pre> 46 <pre><%=html_encode(course.ai_system_prompt)%></pre>
45 47
46 <h4>AI first message (optional)</h4> 48 <h4>AI first message (optional)</h4>
47 <pre><%=html_encode(course.ai_first_message or "")%></pre> 49 <pre><%=html_encode(course.ai_first_message)%></pre>
50
51 <h4>Text to speech instructions</h4>
52 <pre><%=html_encode(course.tts_instructions)%></pre>
48 53
49 </div> 54 </div>
50 </body> 55 </body>
51 </html> 56 </html>
52 <% 57 <%