mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-06-13 04:48:09 +00:00
enhanced ui
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + Vue</title>
|
||||
<script type="module" crossorigin src="/assets/index-gD_iVx44.js"></script>
|
||||
<script type="module" crossorigin src="/assets/index-xU-eXePa.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-tsveoIuX.css">
|
||||
</head>
|
||||
<body>
|
||||
|
@ -1,7 +1,8 @@
|
||||
import { createApp } from 'vue';
|
||||
import { createRouter, createWebHistory } from 'vue-router';
|
||||
import { createStore } from 'vuex'
|
||||
import App from './App.vue';
|
||||
import Install from './components/Install.vue';
|
||||
import Install from './views/Install.vue';
|
||||
import './style.css';
|
||||
const routes = [
|
||||
{
|
||||
@ -16,4 +17,51 @@ const router = createRouter({
|
||||
routes,
|
||||
});
|
||||
|
||||
|
||||
// Create a new store instance.
|
||||
export const store = createStore({
|
||||
state () {
|
||||
return {
|
||||
// count: 0,
|
||||
yesNoDialog:null,
|
||||
universalForm:null,
|
||||
toast:null,
|
||||
messageBox:null,
|
||||
api_get_req:null,
|
||||
startSpeechRecognition:null,
|
||||
ready:false,
|
||||
loading_infos: "",
|
||||
loading_progress: 0,
|
||||
version : "unknown",
|
||||
settingsChanged:false,
|
||||
isConnected: false, // Add the isConnected property
|
||||
isModelOk: false,
|
||||
isGenerating: false,
|
||||
config:null,
|
||||
mountedPers:null,
|
||||
mountedPersArr:[],
|
||||
mountedExtensions:[],
|
||||
bindingsZoo:[],
|
||||
modelsArr:[],
|
||||
selectedModel:null,
|
||||
personalities:[],
|
||||
diskUsage:null,
|
||||
ramUsage:null,
|
||||
vramUsage:null,
|
||||
modelsZoo:[],
|
||||
installedModels:[],
|
||||
currentModel:null,
|
||||
extensionsZoo:[],
|
||||
databases:[],
|
||||
}
|
||||
},
|
||||
mutations: {
|
||||
|
||||
},
|
||||
getters: {
|
||||
},
|
||||
actions: {
|
||||
}
|
||||
})
|
||||
|
||||
createApp(App).use(router).mount('#app');
|
||||
|
@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<div class="flex flex-col items-center justify-center rounded-lg m-2 shadow-lg hover:border-primary dark:hover:border-primary hover:border-solid hover:border-2 border-2 border-transparent even:bg-bg-light-discussion-odd dark:even:bg-bg-dark-discussion-odd flex flex-col flex-grow flex-wrap overflow-visible p-4 pb-2">
|
||||
<img :src = "LoLLMSLogo">
|
||||
<h1 class="text-4xl font-bold mb-4">LOLLMS installation tool</h1>
|
||||
<p class="text-left">
|
||||
Welcome to the installer of lollms. Here you can select your install profile.<br>
|
||||
@ -7,11 +8,11 @@
|
||||
</p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<label class="flex items-center">
|
||||
<input type="radio" value="nvidia" v-model="selectedOption" class="mr-2">
|
||||
<input type="radio" value="cuda" v-model="selectedOption" class="mr-2">
|
||||
Use NVIDIA GPU with CUDA
|
||||
</label>
|
||||
<label class="flex items-center">
|
||||
<input type="radio" value="amd" v-model="selectedOption" class="mr-2">
|
||||
<input type="radio" value="rocm" v-model="selectedOption" class="mr-2">
|
||||
Use AMD GPU with ROCm
|
||||
</label>
|
||||
<label class="flex items-center">
|
||||
@ -27,16 +28,23 @@
|
||||
Install
|
||||
</button>
|
||||
</div>
|
||||
<MessageBox ></MessageBox>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MessageBox from '../components/messageBox.vue';
|
||||
import axios from 'axios';
|
||||
import LoLLMSLogo from '../assets/logo.png'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
LoLLMSLogo:LoLLMSLogo,
|
||||
selectedOption: "cpu",
|
||||
};
|
||||
},
|
||||
components:{
|
||||
MessageBox
|
||||
},
|
||||
methods: {
|
||||
install() {
|
||||
axios.post("/start_installing",{mode:this.selectedOption}).then(()=>{
|
Reference in New Issue
Block a user