| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>LocalFoodAI Chat</title>
- <meta name="description" content="LocalFoodAI Assistant for Nutritional Information and Menu Proposals">
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
- <link rel="stylesheet" href="/static/style.css">
- </head>
- <body>
- <div class="app-container">
- <header class="chat-header">
- <div class="brand">
- <div class="logo">🍳</div>
- <div>
- <h1>LocalFoodAI</h1>
- <span class="status-indicator"></span><span class="status-text">Local LLM Ready</span>
- </div>
- </div>
- <div class="actions">
- <button id="clear-chat" title="Clear Chat">
- <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 6h18M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"></path></svg>
- </button>
- </div>
- </header>
-
- <main class="chat-container" id="chat-container">
- <div class="message system">
- <div class="avatar">🤖</div>
- <div class="message-content">
- <p>Hello! I am LocalFoodAI, your completely local nutrition and menu assistant. How can I help you today?</p>
- </div>
- </div>
- </main>
- <footer class="chat-input-area">
- <form id="chat-form" class="input-form">
- <textarea id="user-input" placeholder="Ask about recipes, nutrition, menus..." rows="1" required></textarea>
- <button type="submit" id="send-btn" class="send-btn" aria-label="Send message">
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
- </button>
- </form>
- <div class="footer-note">Powered by Llama 3.1 8B running locally on Ubuntu 24.04 via Ollama</div>
- </footer>
- </div>
-
- <script src="/static/script.js"></script>
- </body>
- </html>
|