78 lines
2.6 KiB
HTML
78 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<title>AI Assistant</title>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Main container for the layout -->
|
|
<div class="container">
|
|
|
|
<!-- History section: A scrollable list of interactions or messages -->
|
|
<div class="history">
|
|
<ul>
|
|
<li>history1</li>
|
|
<li>history2</li>
|
|
<li>history3</li>
|
|
<li>history4</li>
|
|
<li>history5</li>
|
|
<li>history6</li>
|
|
<li>history7</li>
|
|
<li>history8</li>
|
|
<li>history9</li>
|
|
<li>history10</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Models section: Contains buttons to switch between AI models -->
|
|
<div class="models">
|
|
<div class="titel">
|
|
<h1>Different AI models</h1>
|
|
</div>
|
|
<!-- Each AI model is represented as a colored circular button -->
|
|
<div class="ai-class">
|
|
<h3>Code</h3>
|
|
<div class="circle code-model"></div>
|
|
</div>
|
|
<div class="ai-class">
|
|
<h3>Math</h3>
|
|
<div class="circle math-model"></div>
|
|
</div>
|
|
<div class="ai-class">
|
|
<h3>Language</h3>
|
|
<div class="circle language-model"></div>
|
|
</div>
|
|
<div class="ai-class">
|
|
<h3>Default</h3>
|
|
<div class="circle default-model"></div>
|
|
</div>
|
|
<div class="ai-class">
|
|
<h3>Custom</h3>
|
|
<div class="circle custom-model"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Output section: Simulating a conversation with AI -->
|
|
<div class="output">
|
|
<div class="conversation">
|
|
<div class="user-message">User: What is the weather today?</div>
|
|
<div class="ai-message">AI: It's sunny with a slight breeze.</div>
|
|
<div class="user-message">User: Great! Thank you!</div>
|
|
<div class="ai-message">AI: You're welcome!</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Input section: Where user input is provided -->
|
|
<div class="input">
|
|
<input type="text" placeholder="Type your message here..." />
|
|
<button><img src="img/microphone.svg" alt="microphone"></button>
|
|
<button>Send</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|