mirror of
https://github.com/tcsenpai/spacellama.git
synced 2025-06-10 21:17:30 +00:00
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
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>
|
|
<div class="form-group">
|
|
<label for="token-limit">Token Limit:</label>
|
|
<input type="number" id="token-limit" min="1000" step="1000" placeholder="4096" />
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Save Settings</button>
|
|
<div class="form-group">
|
|
<label for="system-prompt">System Prompt:</label>
|
|
<textarea id="system-prompt" rows="3" class="form-control"></textarea>
|
|
</div>
|
|
</form>
|
|
<div id="status" class="status-message"></div>
|
|
</div>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|