47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>TLC Vector Search</title>
|
|
<link rel="icon" href="/static/favicon.png" type="image/png" />
|
|
<link rel="stylesheet" href="https://unpkg.com/xp.css" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="window" style="max-width: 1200px; margin: 20px auto;">
|
|
<div class="title-bar">
|
|
<div class="title-bar-text">Vector Search (Experimental)</div>
|
|
<div class="title-bar-controls">
|
|
<a class="title-bar-link" href="/">⬅ Back to Search</a>
|
|
</div>
|
|
</div>
|
|
<div class="window-body">
|
|
<p>Enter a natural language prompt; results come from the Qdrant vector index.</p>
|
|
|
|
<fieldset>
|
|
<legend>Vector Query</legend>
|
|
<div class="field-row" style="margin-bottom: 8px;">
|
|
<label for="vectorQuery" style="width: 60px;">Query:</label>
|
|
<input id="vectorQuery" type="text" placeholder="Describe what you are looking for" style="flex: 1;" />
|
|
<button id="vectorSearchBtn">Search</button>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<div id="vectorMeta" style="margin-top: 12px; font-size: 11px;"></div>
|
|
|
|
<fieldset style="margin-top: 16px;">
|
|
<legend>Results</legend>
|
|
<div id="vectorResults"></div>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div class="status-bar">
|
|
<p class="status-bar-field">Experimental mode • Qdrant</p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/static/vector.js"></script>
|
|
</body>
|
|
</html>
|