mirror of
https://github.com/tcsenpai/spacellama.git
synced 2025-06-18 17:00:09 +00:00
30 lines
1005 B
HTML
30 lines
1005 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>OLLAMA Summarizer Settings</title>
|
|
<link rel="stylesheet" type="text/css" href="options.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>OLLAMA Summarizer Settings</h1>
|
|
<form id="settings-form">
|
|
<div class="form-group">
|
|
<label for="endpoint">OLLAMA Endpoint:</label>
|
|
<div class="input-group">
|
|
<input type="text" id="endpoint" placeholder="http://localhost:11434">
|
|
<span id="endpoint-status" class="status-indicator"></span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="model">OLLAMA Model:</label>
|
|
<input type="text" id="model" placeholder="llama2">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Save Settings</button>
|
|
</form>
|
|
<div id="status" class="status-message"></div>
|
|
</div>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html> |