1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <script>
- MathJax = {
- tex: { inlineMath: [['$', '$'], ['\\\\(', '\\\\)']] }
- };
- </script>
- <script id="MathJax-script" src="https://raye.mistivia.com/mathjax/tex-mml-chtml.js"></script>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <title>Lite AI Chat</title>
- </head>
- <body>
- <div class="font-sans h-screen flex max-w-6xl flex-col m-auto">
- <!-- header -->
- <div class="p-8 bg-gray-100">
- <select class="modes bg-white p-4 rounded-lg text-lg" id="model-selector"></select>
- </div>
-
- <!-- messages -->
- <div class="p-6 my-2 flex-1 overflow-y-auto" id="message-container">
- </div>
-
- <!-- input area -->
- <div class="flex p-4 my-2">
- <textarea class="flex-1 m-2 p-4 border-gray-200 outline-none resize-none border rounded-lg"
- placeholder="Input Message..." rows="3" id="input-box"
- ></textarea>
- <div class="flex flex-col">
- <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="send-button">Send</button>
- <button class="rounded-lg py-4 px-8 bg-gray-200 hover:bg-gray-300 m-2" id="stop-button">Stop</button>
- </div>
- </div>
- </div>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
|