MultiModel-AI-Router / index.html
VethaNarayananG's picture
Update index.html
3223afd verified
Raw
History Blame Contribute Delete
831 Bytes
<!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>