File size: 831 Bytes
4eb0ce1 3223afd 4eb0ce1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>MultiModel AI Router</title>
<link rel="stylesheet"
href="style.css">
</head>
<body>
<div class="container">
<h1>🤖 MultiModel AI Router</h1>
<p>
Automatically selects the best AI model based on your prompt.
</p>
<textarea
id="prompt"
placeholder="Enter your prompt here...">
</textarea>
<button id="generateBtn">
Generate
</button>
<div class="result">
<h2>Selected Model</h2>
<p id="model">
None
</p>
<h2>Output</h2>
<div id="output">
Waiting for prompt...
</div>
</div>
</div>
<script src="script.js"></script>
<script src="config.js"></script>
<script src="router.js"></script>
<script src="models.js"></script>
<script src="script.js"></script>
</body>
</html> |