Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Ollama Chat</title> | |
| <link rel="stylesheet" href="/static/style.css"> | |
| </head> | |
| <body> | |
| <div id="chat-container"> | |
| <div id="header"> | |
| <h1>Ollama Chat</h1> | |
| </div> | |
| <div id="chat-window"> | |
| <ul id="message-list"></ul> | |
| </div> | |
| <div id="input-container"> | |
| <input type="text" id="message-input" placeholder="Type your message..."> | |
| <button id="send-button">Send</button> | |
| </div> | |
| </div> | |
| <script src="/static/script.js"></script> | |
| </body> | |
| </html> | |