mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 20:37:51 +00:00
fixed models and personalities bug
This commit is contained in:
parent
b2fcb34955
commit
d461944d22
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
web/dist/index.html
vendored
4
web/dist/index.html
vendored
@ -6,8 +6,8 @@
|
||||
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LoLLMS WebUI</title>
|
||||
<script type="module" crossorigin src="/assets/index-CqKTM31L.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-BeXUn7MN.css">
|
||||
<script type="module" crossorigin src="/assets/index-BX4a3vRX.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-BIBtfXun.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
@ -305,7 +305,9 @@
|
||||
class="absolute top-0 left-0 w-full h-full opacity-0 group-hover/item:opacity-100 transition-opacity duration-200 bg-white dark:bg-gray-900 rounded-md shadow-md p-2 flex flex-col items-center justify-center"
|
||||
>
|
||||
<!-- Full Name -->
|
||||
<span class="text-xs font-medium mb-2 text-center">{{ item.name }}</span>
|
||||
<span class="text-xs font-medium mb-2 text-center"
|
||||
@click.prevent="setBinding(item)"
|
||||
>{{ item.name }}</span>
|
||||
|
||||
<!-- Action Buttons -->
|
||||
<div class="flex space-x-1">
|
||||
@ -382,7 +384,9 @@
|
||||
class="absolute top-0 left-0 w-full h-full opacity-0 group-hover/item:opacity-100 transition-opacity duration-200 bg-white dark:bg-gray-900 rounded-md shadow-md p-2 flex flex-col items-center justify-center"
|
||||
>
|
||||
<!-- Full Name -->
|
||||
<span class="text-xs font-medium mb-2 text-center">{{ item.name }}</span>
|
||||
<span class="text-xs font-medium mb-2 text-center"
|
||||
@click.prevent="setModel(item)"
|
||||
>{{ item.name }}</span>
|
||||
|
||||
<!-- Action Buttons -->
|
||||
<div class="flex space-x-1">
|
||||
@ -457,7 +461,9 @@
|
||||
class="absolute top-0 left-0 w-full h-full opacity-0 group-hover/item:opacity-100 transition-opacity duration-200 bg-white dark:bg-gray-900 rounded-md shadow-md p-2 flex flex-col items-center justify-center"
|
||||
>
|
||||
<!-- Full Name -->
|
||||
<span class="text-xs font-medium mb-2 text-center">{{ item.name }}</span>
|
||||
<span class="text-xs font-medium mb-2 text-center"
|
||||
@click.prevent="onPersonalitySelected(item)"
|
||||
>{{ item.name }}</span>
|
||||
|
||||
<!-- Action Buttons -->
|
||||
<div class="flex space-x-1">
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 1fac389bf6c0c9ccc7d4c50766c938f8ea79d3b7
|
||||
Subproject commit cbe9c3d83183d6b6e4a911117fe6e0a79b3efd52
|
Loading…
Reference in New Issue
Block a user