index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
  5. <script>
  6. globalConfig = {};
  7. globalCurrentModel = {};
  8. </script>
  9. <meta charset="UTF-8">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <title></title>
  12. </head>
  13. <body>
  14. <div class="header">
  15. <select id="model-selector">
  16. </select>
  17. </div>
  18. <div class="chat-container" id="message-container">
  19. <div class="system-prompt-container">
  20. <textarea class="system-prompt-box" placeholder="System Prompt..." rows="2" id="system-prompt"></textarea>
  21. </div>
  22. </div>
  23. <div class="input-container">
  24. <textarea class="input-box" placeholder="Input Message..." rows="3" id="input-box"></textarea>
  25. <button class="button send" id="send-button">Send</button>
  26. <button class="button stop" id="stop-button">Stop</button>
  27. </div>
  28. <script type="module" src="/src/main.js"></script>
  29. </body>
  30. </html>