index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>
  15. <div class="font-sans h-screen flex max-w-6xl flex-col m-auto">
  16. <!-- header -->
  17. <div class="p-8 bg-gray-100">
  18. <select class="modes bg-white p-4 rounded-lg text-lg" id="model-selector"></select>
  19. </div>
  20. <!-- messages -->
  21. <div class="p-6 my-2 flex-1 overflow-y-auto" id="message-container">
  22. </div>
  23. <!-- input area -->
  24. <div class="flex p-4 my-2">
  25. <textarea class="flex-1 m-2 p-4 border-gray-200 outline-none resize-none border rounded-lg"
  26. placeholder="Input Message..." rows="3" id="input-box"
  27. ></textarea>
  28. <div class="flex flex-col">
  29. <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="send-button">Send</button>
  30. <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="stop-button">Stop</button>
  31. </div>
  32. </div>
  33. </div>
  34. <script type="module" src="/src/main.js"></script>
  35. </body>
  36. </html>