mayurasandakalum's picture
Upload 38 files
3cedf09 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/themes/prism-tomorrow.min.css" rel="stylesheet" />
<link rel="stylesheet" href="/static/css/styles.css">
<title>Bluechip Technologies Asia</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: #156BA6;">
<div class="container d-flex">
<a class="navbar-brand" href="/">🧞 PaLM2 Document Genie</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav w-50 d-flex justify-content-between">
<li class="nav-item">
<a class="nav-link" href="/chat">Chat Genie</a>
</li>
</ul>
</div>
<a href="https://github.com/Nick-Williamz/Palm-DocumentGenie-Webui" target="_blank"><svg
xmlns="http://www.w3.org/2000/svg" width="22" height="22" fill="white" class="bi bi-github"
viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" />
</svg></a>
</div>
</nav>
<div class="container-fluid">
<h1 class="title">Bluechip Technologies Asia</h1>
<p class="text-center large">Upload Your Documents, Ask Questions, & Store Converstations</p>
<div class="d-flex" style="gap: 20px; height: 100%;">
<div class="sidebar">
<div class="sidebar-content">
<img src="/static/img/logo.png" class="genie rounded" alt="Document Genie" />
<hr>
<h3 class="models"><strong>Embedding Model:</strong><br><span id="embedding-model"></span></h3>
<h3 class="models"><strong>Text Generation:</strong><br><span id="generation-model"></span></h3>
</div>
<div class="sidebar-footer">
<h5>Powered By:PaLM 2</h5>
<hr>
<b>
<p class="large" style="font-size: 20px;">Bluechip Technologies Asia</p>
</b>
<p class="small">Your Trusted Technology Partner</p>
<a href="https://bluechiptech.asia" target="_blank">Contact us</a>
</div>
</div>
<div class="chat-window">
<div class="mac-btns">
<div class="mac-btn red"></div>
<div class="mac-btn yellow"></div>
<div class="mac-btn green"></div>
<span class="ms-2" style="color: black;">Document Genie V 1.0</span>
</div>
<pre id="output"></pre>
<div class="chat-input">
<hr>
<form id="topic-form" class="mt-4">
<div class="form-group">
<label for="topic">Enter a Question About Your Document(s):</label>
<input type="text" class="form-control" id="topic" name="topic" required>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">Generate Section</button>
<button id="clear-document-btn" class="btn btn-danger ml-2">Clear Document</button>
</div>
</form>
</div>
</div>
<div class="document-view">
<p><strong>πŸ“„ Document View</strong></p>
<hr>
<ul>
{% for file in loaded_files %}
<li>{{ file }}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<!-- Bootstrap JS and jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Our custom JavaScript -->
<script src="/static/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/components/prism-python.min.js"></script>
<script>
// Fetch the models in use
fetch('/get-models')
.then(response => response.json())
.then(data => {
var embeddingModelElement = document.getElementById('embedding-model');
var generationModelElement = document.getElementById('generation-model');
embeddingModelElement.textContent = data.embedding_model;
generationModelElement.textContent = data.generation_model;
});
</script>
<script>
</script>
</body>
</html>