mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
bf65ed6eb8
* feat(webui): add partials, show backends associated to models * fix(auth): put assistant and backend under auth
53 lines
2.2 KiB
HTML
53 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{template "views/partials/head" .}}
|
|
|
|
<body class="bg-gray-900 text-gray-200">
|
|
<div class="flex flex-col min-h-screen">
|
|
|
|
{{template "views/partials/navbar" .}}
|
|
|
|
<div class="container mx-auto px-4 flex-grow">
|
|
<div class="header text-center py-12">
|
|
<h1 class="text-5xl font-bold text-gray-100">Welcome to <i>your</i> LocalAI instance!</h1>
|
|
<div class="mt-6">
|
|
<!-- Logo can be uncommented and updated with a valid URL -->
|
|
</div>
|
|
<p class="mt-4 text-lg">The FOSS alternative to OpenAI, Claude, ...</p>
|
|
<a href="https://localai.io" target="_blank" class="mt-4 inline-block bg-blue-500 text-white py-2 px-4 rounded-lg shadow transition duration-300 ease-in-out hover:bg-blue-700 hover:shadow-lg">
|
|
<i class="fas fa-book-reader pr-2"></i>Documentation
|
|
</a>
|
|
</div>
|
|
|
|
<div class="models mt-12">
|
|
<h2 class="text-center text-3xl font-semibold text-gray-100">Installed models</h2>
|
|
<p class="text-center mt-4 text-xl">We have {{len .ModelsConfig}} pre-loaded models available.</p>
|
|
<ul class="mt-8 space-y-4">
|
|
{{ range .ModelsConfig }}
|
|
<li class="bg-gray-800 border border-gray-700 p-4 rounded-lg">
|
|
<div class="flex justify-between items-center">
|
|
<p class="font-bold text-white flex items-center"><i class="fas fa-brain pr-2"></i>{{.Name}}</p>
|
|
{{ if .Backend }}
|
|
<!-- Badge for Backend -->
|
|
<span class="inline-block bg-blue-500 text-white py-1 px-3 rounded-full text-xs">
|
|
{{.Backend}}
|
|
</span>
|
|
{{ else }}
|
|
<span class="inline-block bg-yellow-500 text-white py-1 px-3 rounded-full text-xs">
|
|
auto
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
<!-- Additional details can go here -->
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "views/partials/footer" .}}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|