index.html 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <script>
  5. MathJax = {
  6. tex: { inlineMath: [['$', '$'], ['\\\\(', '\\\\)']] }
  7. };
  8. </script>
  9. <script id="MathJax-script" src="https://raye.mistivia.com/mathjax/tex-mml-chtml.js"></script>
  10. <meta charset="UTF-8">
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  12. <title>Lite AI Chat</title>
  13. </head>
  14. <body class="font-sans h-screen flex flex-col max-w-5xl m-auto">
  15. <div class="p-8 bg-gray-100">
  16. <select class="bg-white p-4 rounded-lg text-lg" id="model-selector"></select>
  17. </div>
  18. <div class="p-6 flex-1" id="message-container">
  19. </div>
  20. <div class="flex my-4 p-4">
  21. <textarea class="flex-1 m-2 p-4 border-gray-200 outline-none resize-none border rounded-lg"
  22. placeholder="Input Message..." rows="3" id="input-box"
  23. ></textarea>
  24. <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="send-button">Send</button>
  25. <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="stop-button">Stop</button>
  26. </div>
  27. <script type="module" src="/src/main.js"></script>
  28. </body>
  29. </html>