Commit Graph

539 Commits

Author SHA1 Message Date
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
AndzejsP
c8e66c8a56 nice 2023-07-01 14:58:27 +03:00
AndzejsP
943ca94a26 somehting 2023-07-01 14:46:12 +03:00
AndzejsP
1652e2490a fixed relative paths not working 2023-07-01 14:06:57 +03:00
AndzejsP
d7aad205fa removed 2023-06-30 17:49:49 +03:00
saloui
462cd27e4f fixed 2023-06-30 16:24:41 +02:00
saloui
7a0e135009 fixed hilighting 2023-06-30 15:38:01 +02:00
saloui
6caf5ee94b Merge branch 'dev' of https://github.com/andzejsp/gpt4all-ui into main 2023-06-30 15:27:04 +02:00
saloui
c861702225 Fixed syntax coloring 2023-06-30 15:23:49 +02:00
AndzejsP
d86583242e small shanges 2023-06-30 13:13:38 +03:00
AndzejsP
beaad9a36a moved initial data loads into constructor 2023-06-30 12:58:24 +03:00
AndzejsP
dd8ec312e7 added model search 2023-06-30 12:49:59 +03:00
Saifeddine ALOUI
0d8a4dc503 upgraded 2023-06-29 18:31:46 +02:00
AndzejsP
2213206457 Merge branch 'main' into dev 2023-06-29 18:22:52 +03:00
AndzejsP
1903e36df5 ok kinda working 2023-06-29 18:19:04 +03:00
saloui
c225063be5 fixed bullet points 2023-06-29 16:52:03 +02:00
AndzejsP
631828045c yeah boi!! 2023-06-29 17:10:19 +03:00
AndzejsP
c8378bb81e something not right 2023-06-29 13:34:50 +03:00
andzejsp
38eab28fb1 Merge branch 'main' into dev 2023-06-28 23:11:13 +03:00
andzejsp
ca8369fa38 fixed cancel issue 2023-06-28 23:07:59 +03:00
AndzejsP
010945cc3c needs more work 2023-06-28 18:20:24 +03:00
AndzejsP
2ada59e1b9 seems working 2023-06-28 17:53:31 +03:00
AndzejsP
48ccc5a982 found culprit 2023-06-28 13:10:43 +03:00
Saifeddine ALOUI
7610eea73a updated 2023-06-28 10:11:34 +02:00
AndzejsP
e7dee8a58a smixes 2023-06-28 09:49:34 +03:00
AndzejsP
715818b9cb needs debugs 2023-06-28 08:53:58 +03:00
AndzejsP
26dca4ac64 wip2 2023-06-28 08:49:40 +03:00
Saifeddine ALOUI
205574de3a updated 2023-06-28 00:14:18 +02:00
AndzejsP
ccbf3fa283 wip not ready 2023-06-27 18:01:32 +03:00
AndzejsP
f1b6e7e38e placer 2023-06-27 14:04:29 +03:00
AndzejsP
62a523cc3c placeholder 2023-06-27 13:58:32 +03:00
saloui
4038d521a0 repared links bug 2023-06-27 11:18:36 +02:00
Saifeddine ALOUI
143759e395 updated renderer built code 2023-06-27 00:51:32 +02:00
AndzejsP
1dd3713846 diable for now 2023-06-26 18:01:07 +03:00
AndzejsP
8660c91c6e wip 2023-06-26 18:00:39 +03:00
AndzejsP
e75ce42139 idk 2023-06-26 13:12:44 +03:00
AndzejsP
40da24c8a5 fixed custom model entry 2023-06-26 12:55:35 +03:00
Saifeddine ALOUI
d7eb70625f built 2023-06-24 17:18:52 +02:00
AndzejsP
226b363d49 added download from url 2023-06-24 18:12:32 +03:00
AndzejsP
9255ba1c4e added some safeguards 2023-06-24 17:20:12 +03:00
AndzejsP
d0a5d16456 modified buttons to be more implicit 2023-06-24 16:23:44 +03:00
AndzejsP
edc52bdf34 added clear search 2023-06-24 14:35:09 +03:00
Saifeddine ALOUI
298af795f8 updated 2023-06-24 13:06:06 +02:00
AndzejsP
b2ac608108 last minute fix 2023-06-23 17:55:35 +03:00
saloui
a85ea36954 upgraded UI for better model installation 2023-06-23 16:19:01 +02:00
AndzejsP
6b5054107b usage 2023-06-23 16:25:07 +03:00
AndzejsP
98ddad578f speedstick 2023-06-23 16:16:28 +03:00
AndzejsP
b7129933b3 fixes 2023-06-23 15:04:01 +03:00
AndzejsP
00a08bd660 wip download 2023-06-23 13:24:55 +03:00
AndzejsP
74c0669f38 model fixes 2023-06-23 13:00:14 +03:00
AndzejsP
b53cd92f7a added some fixes and installed 2023-06-23 10:18:37 +03:00
Saifeddine ALOUI
9d22a7b95f bugfix 2023-06-23 02:02:37 +02:00
andzejsp
67633b75a4 setting updater fixed 2023-06-22 22:45:19 +03:00
Saifeddine ALOUI
39cb489b67 built 2023-06-22 20:43:07 +02:00
AndzejsP
9b9fcd0d3d added gpu info 2023-06-22 18:13:51 +03:00
AndzejsP
6ce0776daf added pers settigns 2023-06-22 13:29:42 +03:00
Saifeddine ALOUI
a68842f160 Merge branch 'main' of https://github.com/nomic-ai/gpt4all-ui into lollms-config-v2 2023-06-22 00:44:12 +02:00
saloui
7cc68d4b81 updated 2023-06-21 17:13:51 +02:00
AndzejsP
868871a93c somehow ready 2023-06-21 17:56:03 +03:00
AndzejsP
ce9ae33f5a cleanup 2023-06-21 16:19:40 +03:00
AndzejsP
fe56fbfb31 wiiip 2023-06-21 13:34:25 +03:00
AndzejsP
b04dbb2c9c wip 2023-06-21 13:19:19 +03:00
AndzejsP
c98eeb1f05 small fix 2023-06-21 08:44:25 +03:00
AndzejsP
89fb3c281d comment 2023-06-20 18:19:08 +03:00
AndzejsP
74552365f9 added universal form 2023-06-20 18:17:00 +03:00
AndzejsP
8abfb250f6 Merge branch 'main' into lollms-patchy2 2023-06-20 15:23:54 +03:00
saloui
4bce136f2a upgraded and fixed timing 2023-06-20 14:21:49 +02:00
AndzejsP
a5697d6e28 fix 2023-06-20 13:15:03 +03:00
AndzejsP
a5462a5a06 fix 2023-06-20 13:10:33 +03:00
AndzejsP
41636c2bf0 moved the add models to a separate setting entry 2023-06-20 13:02:56 +03:00
AndzejsP
5037b11049 fixes 2023-06-19 18:07:01 +03:00
AndzejsP
3e0ea678e0 removed dysfunctional checkbox 2023-06-19 17:58:13 +03:00
AndzejsP
c83d7987fd added search bar for personalities 2023-06-19 17:54:02 +03:00
AndzejsP
489d0b0555 fixed something 2023-06-19 13:19:39 +03:00
Saifeddine ALOUI
e5fe5fc29b no progress 2023-06-18 18:31:35 +02:00
Saifeddine ALOUI
e802c8a81b Enhanced UI 2023-06-17 19:02:54 +02:00
AndzejsP
9c48cdc274 fixed 2023-06-17 17:39:04 +03:00
AndzejsP
2b756ff3d3 consistency 2023-06-17 17:28:36 +03:00
AndzejsP
fb2e08615a added binding reinstall 2023-06-17 17:25:35 +03:00
AndzejsP
b6b9015e8b removed log 2023-06-17 16:56:06 +03:00
AndzejsP
ad2229ccd7 renamed and some stuff 2023-06-17 16:55:45 +03:00
AndzejsP
0970456793 fixed time spent 2023-06-17 16:34:56 +03:00
AndzejsP
a804e5aac7 few more fixes 2023-06-17 16:14:04 +03:00
AndzejsP
56588176a1 filesize 2023-06-17 16:06:01 +03:00
AndzejsP
82e963e0f2 more 2023-06-17 16:02:18 +03:00
AndzejsP
b3f7c91ab0 tttost 2023-06-17 15:46:52 +03:00
AndzejsP
e13304a98a idk 2023-06-17 15:45:37 +03:00
AndzejsP
25fd36fdb0 fixed toast copy button 2023-06-17 15:44:54 +03:00
AndzejsP
e9e34e9f4d wip 2023-06-17 15:00:45 +03:00
AndzejsP
f558dc162c page title 2023-06-17 14:23:40 +03:00
AndzejsP
97403f361d reworked 2023-06-17 14:15:08 +03:00
AndzejsP
9f3635bde0 renamed to lollms + logo 2023-06-17 14:08:57 +03:00
AndzejsP
29a3e16194 made yesand no upgrades 2023-06-17 13:53:40 +03:00
AndzejsP
0d2d74fb33 fixed apply status 2023-06-17 11:43:31 +03:00
AndzejsP
584f70edff added copy message infos 2023-06-16 18:22:39 +03:00
AndzejsP
870f49449a more fixes 2023-06-16 13:51:04 +03:00
AndzejsP
b50ca95e04 some fixes 2023-06-16 13:14:22 +03:00
andzejsp
f7c3ae835a hidden 2023-06-15 22:37:07 +03:00
AndzejsP
b0a35beaeb time fix 2023-06-15 17:52:19 +03:00
AndzejsP
f78ea416ba added message data 2023-06-15 17:45:26 +03:00
AndzejsP
56d5b9cdfd Merge branch 'lollms' into lollms-patchy2 2023-06-15 16:57:43 +03:00
AndzejsP
85d2023ade needs more work 2023-06-15 13:28:47 +03:00
AndzejsP
2e70384dd1 work in progress 2023-06-15 13:22:40 +03:00
saloui
deef35abf0 upgraded tools 2023-06-15 12:03:05 +02:00
Saifeddine ALOUI
2077fa0042 Added saving the model and the personality full path 2023-06-15 00:26:12 +02:00
AndzejsP
9114807242 in progress 2023-06-14 18:23:13 +03:00
AndzejsP
4298e3b5c6 according to backend 2023-06-14 13:56:54 +03:00
AndzejsP
276848884c fixed personality selector 2023-06-14 13:39:13 +03:00