Commit Graph

446 Commits

Author SHA1 Message Date
Saifeddine ALOUI
89a52963fc enhanced 2023-07-17 13:03:42 +02:00
Saifeddine ALOUI
9568b79e1e upgraded 2023-07-17 11:47:31 +02:00
Saifeddine ALOUI
bb5708ebca upgraded 2023-07-17 00:36:19 +02:00
Saifeddine ALOUI
d78ff97967 repared methods 2023-07-16 20:22:25 +02:00
Saifeddine ALOUI
d75112bcdf version 3.1 2023-07-16 18:57:30 +02:00
Saifeddine ALOUI
831b3ea6fb compiled 2023-07-15 23:06:28 +02:00
Saifeddine ALOUI
7cb99bb8e6 upgraded 2023-07-15 23:06:27 +02:00
Saifeddine ALOUI
7ff0deedb3 built 2023-07-15 20:02:16 +02:00
Saifeddine ALOUI
27a8872308 Merge branch 'main' of https://github.com/nomic-ai/gpt4all-ui 2023-07-15 20:02:06 +02:00
Saifeddine ALOUI
d1fbf77d0d upgraded 2023-07-15 20:02:03 +02:00
signalprime
d81e76b58f
Update DiscussionsView.vue for Import Dropdown
Convert the existing import button into a dropdown menu with both "LOLLMS" and "ChatGPT" options:

1. Replace the button with a `<div>` that will become the dropdown trigger. Add a click listener to toggle the menu open/closed:

```html
<div @click="toggleDropdown" class="text-2xl hover:text-secondary duration-75">
  <i data-feather="log-in"></i>  
</div>
```

2. Add `toggleDropdown` method and `isOpen` data property:

```js
data() {
  return {
    isOpen: false
  }
},

methods: {
  toggleDropdown() {
    this.isOpen = !this.isOpen;
  }  
}
```

3. Add the actual dropdown menu markup that shows conditionally based on `isOpen`:

```html
<div v-if="isOpen" class="dropdown">
  <button @click="importDiscussions">LOLLMS</button>
  <button @click="importChatGPT">ChatGPT</button> 
</div>
```

4. Implement the `importChatGPT` method:

```js
methods: {
  importChatGPT() {
    // handle ChatGPT import
  }  
}
```
2023-07-15 07:39:53 -05:00
Saifeddine ALOUI
2e431d2050 upgraded ui 2023-07-15 02:12:43 +02:00
Saifeddine ALOUI
ee877a4b32 Added sending file options and enhanced commands 2023-07-15 02:12:37 +02:00
Saifeddine ALOUI
a8b236d038 some minor bugfixes 2023-07-14 14:02:53 +02:00
Saifeddine ALOUI
b72542c319 upgraded 2023-07-14 01:42:29 +02:00
Saifeddine ALOUI
874d497b35 upgraded version 2023-07-12 00:35:59 +02:00
Saifeddine ALOUI
466231139e fixed discussions problem 2023-07-11 21:42:23 +02:00
Saifeddine ALOUI
c1edfa79e8 Mobile friendly 2023-07-11 01:28:47 +02:00
Saifeddine ALOUI
29d76bda7e reverted to v2 2023-07-11 01:12:40 +02:00
Saifeddine ALOUI
16ea49efda V2.5 2023-07-11 00:45:47 +02:00
Saifeddine ALOUI
1a2479d9d6 upgraded webui 2023-07-10 22:01:20 +02:00
Saifeddine ALOUI
9892504163 updated 2023-07-09 19:45:43 +02:00
Saifeddine ALOUI
e615d12d8e upgraded 2023-07-09 19:40:51 +02:00
Saifeddine ALOUI
611f7997ec enhanced 2023-07-09 19:40:51 +02:00
Saifeddine ALOUI
0569efaaea upgraded 2023-07-09 19:32:25 +02:00
Saifeddine ALOUI
e07c76deb3 upgraded with some fixes 2023-07-08 00:15:34 +02:00
Saifeddine ALOUI
83e3d995db works with autogptq 2023-07-07 18:25:18 +02:00
saloui
3148d5118e fixed personalities ui 2023-07-06 20:56:21 +02:00
saloui
a14e2f75e4 enhanced step management 2023-07-06 19:19:48 +02:00
saloui
3182ad1481 updated 2023-07-06 13:47:23 +02:00
saloui
9656f1ca19 Merge branch 'main' of https://github.com/ParisNeo/lollms-webui into main 2023-07-06 11:37:13 +02:00
saloui
8d817cc1d2 updated 2023-07-06 11:37:12 +02:00
Saifeddine ALOUI
f3faf08217 added step component 2023-07-06 11:33:44 +02:00
Saifeddine ALOUI
1dc85118ef upgraded code 2023-07-06 02:27:33 +02:00
Saifeddine ALOUI
7df7e44d07 upgraded ui 2023-07-06 01:01:17 +02:00
Saifeddine ALOUI
158d3694c6 little mod 2023-07-05 19:55:07 +02:00
saloui
80c837bbf9 upgraded tool with new functionalities 2023-07-05 17:51:42 +02:00
Saifeddine ALOUI
b96bea43f6 Fixed export database 2023-07-05 02:19:11 +02:00
Saifeddine ALOUI
eae539f24d Merge remote-tracking branch 'lollms_andzejsp/dev' into dev 2023-07-04 02:19:51 +02:00
saloui
638ba2c484 clip removed 2023-07-03 10:02:31 +02:00
AndzejsP
962e7bd4e5 Merge branch 'main' into dev 2023-07-03 08:39:44 +03:00
Saifeddine ALOUI
1f305f1ab6 upgraded code 2023-07-03 02:01:46 +02:00
Saifeddine ALOUI
4de4d112b2 enhanced 2023-07-03 00:17:01 +02:00
Saifeddine ALOUI
9c16f8fae5 Enhanced message types 2023-07-02 15:55:59 +02:00
AndzejsP
8c97378f00 removed until its fixed 2023-07-01 16:58:07 +03:00
AndzejsP
80fed5956b removed becasue reasons 2023-07-01 16:57:59 +03:00
AndzejsP
f0c0f33a9e ss 2023-07-01 16:50:23 +03:00
AndzejsP
08b1677483 removed garbage 2023-07-01 16:48:26 +03:00
AndzejsP
a733d8bbf2 added GPUS 2023-07-01 15:51:13 +03:00
AndzejsP
8f90bb5038 Merge branch 'main' into dev 2023-07-01 14:59:14 +03:00