Saifeddine ALOUI
4d75865c9a
New UI, upgraded code
2023-08-01 00:51:06 +02:00
Saifeddine ALOUI
00c0adbae2
upgraded cards colors
2023-07-31 00:14:17 +02:00
Saifeddine ALOUI
daf4af4066
fixed coloring problems in dark mode
2023-07-31 00:08:29 +02:00
Saifeddine ALOUI
e6595771f7
updated
2023-07-28 01:27:21 +02:00
Saifeddine ALOUI
c720b10e36
steps can fail now
2023-07-28 01:16:26 +02:00
Saifeddine ALOUI
d1078fa257
enhanced ui
2023-07-27 00:03:28 +02:00
Saifeddine ALOUI
333dcf5f53
updated ui
2023-07-25 23:17:12 +02:00
Saifeddine ALOUI
005d1b19c2
upgraded ui
2023-07-25 22:34:47 +02:00
Saifeddine ALOUI
f0e0a9fee9
added progressbar
2023-07-25 22:34:46 +02:00
saloui
808d42933a
updated ui
2023-07-25 17:43:15 +02:00
saloui
b11d56a457
enahnced
2023-07-25 16:46:03 +02:00
saloui
454d8cee1d
upgraded
2023-07-25 16:45:58 +02:00
Saifeddine ALOUI
9075ab2036
enhanced
2023-07-24 14:12:57 +02:00
Saifeddine ALOUI
1ef387408c
upgraded
2023-07-24 14:12:52 +02:00
Saifeddine ALOUI
fc18ebb08e
upgraded
2023-07-24 01:39:27 +02:00
Saifeddine ALOUI
de4a6ecef6
upgraded ui
2023-07-24 01:25:05 +02:00
Saifeddine ALOUI
3ca79f9909
added clipboardTextinput
2023-07-23 15:09:19 +02:00
Saifeddine ALOUI
de938d64f5
fixed category selection
2023-07-23 12:29:41 +02:00
Saifeddine ALOUI
a42f048194
working audio in and audio out
2023-07-22 03:17:30 +02:00
Saifeddine ALOUI
747d7af758
working and debugged code
2023-07-22 02:47:35 +02:00
Saifeddine ALOUI
dec6811571
enhanced ui and upgraded. Now audio in and audio out are working
2023-07-22 02:26:40 +02:00
Saifeddine ALOUI
e43d9cf4b2
Added audio in
2023-07-21 23:59:50 +02:00
Saifeddine ALOUI
a7768dbb12
bugfix2
2023-07-21 23:59:24 +02:00
saloui
f9cc998285
upgraded
2023-07-21 17:01:08 +02:00
saloui
16ad5945f3
upgraded
2023-07-21 15:29:08 +02:00
saloui
dabd0758fd
upgraded lollms
2023-07-20 17:28:58 +02:00
saloui
f6991ecb44
enhanced ui
2023-07-20 11:44:33 +02:00
Saifeddine ALOUI
4c46dbf094
bugfix
2023-07-20 02:27:55 +02:00
Saifeddine ALOUI
94b1e5ca2d
enhanced code
2023-07-20 02:12:54 +02:00
Saifeddine ALOUI
f855b10a0d
upgraded model install script
2023-07-20 02:12:53 +02:00
saloui
d741fad842
upgraded
2023-07-19 17:48:31 +02:00
saloui
857a97be1c
enhanced
2023-07-19 17:41:23 +02:00
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
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
AndzejsP
3aabf4d3bc
Merge branch 'lol-vuex' into lollms-patchy
2023-06-14 11:30:03 +03:00
AndzejsP
d3672fa696
added copy button to toast
2023-06-14 11:28:29 +03:00
Saifeddine ALOUI
4af3d2bc56
fixed personalities bug
2023-06-14 10:27:02 +02:00
Saifeddine ALOUI
74a5d4e73d
upgraded ui
2023-06-14 10:06:38 +02:00
Saifeddine ALOUI
86d3448829
upgraded ui
2023-06-13 18:26:32 +02:00
AndzejsP
dc29926c91
added vuex
2023-06-13 18:09:25 +03:00
AndzejsP
08083e9ae4
smol fix
2023-06-13 17:25:44 +03:00
AndzejsP
642d76c8bc
fixed scroll.. again
2023-06-13 13:27:26 +03:00
AndzejsP
56051816d9
Merge branch 'lollms' into pers-mount
2023-06-13 13:22:55 +03:00
AndzejsP
b90923979e
now its kinda working better
2023-06-13 13:17:14 +03:00
AndzejsP
08cf1c3d8b
kinda working
2023-06-13 12:57:28 +03:00
AndzejsP
a9046e557a
fixed discussion title not clamping
2023-06-13 12:26:06 +03:00
Saifeddine ALOUI
655f392676
upgraded buid
2023-06-12 20:57:17 +02:00
Saifeddine ALOUI
6a297ec066
Merge branch 'lollms' of https://github.com/nomic-ai/gpt4all-ui into lollms
2023-06-12 20:56:48 +02:00
Saifeddine ALOUI
b161d2a8b0
updated ui to add a button
2023-06-12 20:53:31 +02:00
AndzejsP
eeecf129e1
needs more testing
2023-06-12 18:11:05 +03:00
saloui
63679377a8
updated
2023-06-12 15:46:55 +02:00
saloui
5c7eb8a60a
enhanced configuration loading
2023-06-12 15:45:59 +02:00
AndzejsP
da85fbc5f0
Merge branch 'lollms-upd' into lollms-pers-mounter
2023-06-12 12:17:25 +03:00
saloui
d10fc189ce
upgraded
2023-06-12 10:29:41 +02:00
Saifeddine ALOUI
9f46573826
fixed some bugs
2023-06-11 21:02:06 +02:00
AndzejsP
6fa3353f9f
fix
2023-06-10 16:55:46 +03:00
AndzejsP
5d488ee197
model upload and download button
2023-06-10 16:51:18 +03:00
AndzejsP
de337efcdb
idk
2023-06-10 16:34:50 +03:00
AndzejsP
f02c868306
bs wip
2023-06-10 16:17:10 +03:00
AndzejsP
17cc14de3d
Merge branch 'main' into lollms-pers-mounter
2023-06-10 11:39:03 +03:00
Saifeddine ALOUI
5423a9a5d7
update help
2023-06-10 03:13:10 +02:00
Saifeddine ALOUI
3a799eb470
fixed help problems
2023-06-10 02:48:19 +02:00
Saifeddine ALOUI
23055cbdb5
Moved to new version of lollms
2023-06-10 01:37:50 +02:00
AndzejsP
9018dffc24
wip
2023-06-09 17:58:26 +03:00
AndzejsP
4bd595714c
small fix
2023-06-09 13:11:40 +03:00
AndzejsP
3d71981a8c
small fixes
2023-06-09 13:02:49 +03:00
AndzejsP
3fb9bb9a98
finally fixed codeblock issues
2023-06-09 12:40:47 +03:00
Saifeddine ALOUI
d767de86a2
Compiled
2023-06-08 23:06:49 +02:00
AndzejsP
5c613ded45
added copy model info
2023-06-08 17:58:02 +03:00
AndzejsP
442a3ba70c
more experiemnts
2023-06-08 13:50:50 +03:00
AndzejsP
b2400e30ac
comment
2023-06-08 13:39:47 +03:00
AndzejsP
831e5ef368
added language
2023-06-08 13:35:25 +03:00
AndzejsP
d0e9c84be3
fixed scroll to discussion
2023-06-08 12:39:00 +03:00
saloui
4dd666e54c
Added personalities manipulation tools
2023-06-08 08:58:02 +02:00
Saifeddine ALOUI
0f8ae835da
fixed personalities bug
2023-06-08 00:54:01 +02:00
andzejsp
8bbd026add
more last fixes
2023-06-07 22:12:19 +03:00
andzejsp
7ac36b3146
comment out
2023-06-07 21:55:44 +03:00
andzejsp
679c6029ba
Merge branch 'lollms-more' into lollms-dropdown
2023-06-07 21:55:32 +03:00
andzejsp
ce06b6aa55
added disk and ram usage
2023-06-07 21:46:10 +03:00
andzejsp
3a97891905
more fix
2023-06-07 20:39:46 +03:00
AndzejsP
474b7601c1
corrected images
2023-06-07 18:03:17 +03:00
AndzejsP
ef9dec6889
Merge branch 'lollms' into lollms-dropdown +more
2023-06-07 18:02:50 +03:00
AndzejsP
52c7c3f075
added file upload function
2023-06-07 17:49:36 +03:00
AndzejsP
7dd26ceba9
commented out console.log
2023-06-07 17:16:22 +03:00
saloui
864578cd48
Upgraded ui
2023-06-07 09:39:38 +02:00
Saifeddine ALOUI
584a1f6f03
added training code
2023-06-06 22:20:29 +02:00
Saifeddine ALOUI
5f2b53e309
Repared personalities icons
2023-06-06 20:09:00 +02:00
Saifeddine ALOUI
d753c039bf
updated settings view
2023-06-06 19:54:28 +02:00
Saifeddine ALOUI
3806c60303
compiled version
2023-06-06 19:36:30 +02:00
Saifeddine ALOUI
9e9f242247
Merge branch 'main' of https://github.com/nomic-ai/gpt4all-ui into lollms
2023-06-06 17:39:01 +02:00
Saifeddine ALOUI
4d62cef90b
updated
2023-06-06 00:36:35 +02:00
AndzejsP
2394550e58
smaller shadow
2023-06-05 17:57:14 +03:00
AndzejsP
cd1cbb9292
WIP but almost working
2023-06-05 17:43:16 +03:00
AndzejsP
c8b40e7b6a
loading codeblock css on theme switch
2023-06-05 13:47:21 +03:00
AndzejsP
1242b69868
reworked message layout
2023-06-05 13:47:07 +03:00
AndzejsP
4fde7a6c06
rounded code block, experimenting with css
2023-06-05 13:46:54 +03:00
AndzejsP
d0eea8e0d9
removed garbage
2023-06-05 13:45:43 +03:00
Saifeddine ALOUI
cf316373b7
built
2023-06-05 07:22:05 +02:00
Saifeddine ALOUI
d614affcc5
Merge branch 'main' of https://github.com/nomic-ai/gpt4all-ui
2023-06-05 01:21:19 +02:00
Saifeddine ALOUI
fb2f7941ab
local update
2023-06-05 01:21:12 +02:00
AndzejsP
a21af84f74
work in progress
2023-06-03 17:22:55 +03:00
AndzejsP
175ddd2e0e
more fixes and final result
2023-06-03 17:03:20 +03:00
AndzejsP
b5b94b592f
kinda good but not great
2023-06-03 16:15:15 +03:00
AndzejsP
cce5d3a1a1
more fixes
2023-06-03 15:27:58 +03:00
AndzejsP
5b0757113d
fixed scroll bar and UI improvement
2023-06-03 14:33:13 +03:00
andzejsp
02ecfac6f5
wip
2023-06-02 22:06:30 +03:00
AndzejsP
cc7d0c67d1
wip
2023-06-02 17:53:08 +03:00
AndzejsP
a0e6a92231
testing
2023-06-02 12:58:33 +03:00
AndzejsP
33b6125d72
fix suggested by
...
Dean Mumby
2023-06-02 12:35:40 +03:00
AndzejsP
2ad9761405
test 4
2023-06-02 12:29:55 +03:00
AndzejsP
782c6fd571
test 3
2023-06-02 12:25:05 +03:00
AndzejsP
dbd1b01d8d
test 2
2023-06-02 12:22:38 +03:00
AndzejsP
9ef2c8bda7
test
2023-06-02 12:18:45 +03:00
Saifeddine ALOUI
e38b9906fa
built
2023-06-02 00:19:12 +02:00
AndzejsP
73c516c514
added few things in settings tab
2023-06-01 13:07:54 +03:00
AndzejsP
1e7f47afa9
latest build 5
2023-05-31 13:29:03 +03:00
AndzejsP
c221386833
latest build 3
2023-05-31 13:26:45 +03:00
AndzejsP
e20269bd92
latest build v2
2023-05-31 13:23:09 +03:00
AndzejsP
a8989e38d6
latest build
2023-05-31 13:19:28 +03:00
AndzejsP
39c2577c77
fixed scroll to bottom thing
2023-05-31 13:14:04 +03:00
AndzejsP
ce8dd027c2
enabled template
2023-05-31 13:13:53 +03:00
AndzejsP
d040e430dc
latest build
2023-05-31 12:30:32 +03:00
AndzejsP
d87e324fea
small fixex
2023-05-31 12:30:08 +03:00
AndzejsP
26e1886cbc
more UI quality
2023-05-30 18:04:31 +03:00
AndzejsP
2956945243
added binding zoo to collapse all and download ico
2023-05-30 17:37:38 +03:00
AndzejsP
17184cc7ea
added template not usable
2023-05-30 17:33:06 +03:00
AndzejsP
6e17cfaf0b
fixed remove
2023-05-30 17:15:19 +03:00
AndzejsP
3403232626
added drag n drop for discussions
2023-05-30 13:29:49 +03:00
AndzejsP
c48ecbdc0b
drop box ready
2023-05-30 13:09:22 +03:00
Saifeddine ALOUI
f042b16836
Working Open AI version
2023-05-30 00:37:09 +02:00
andzejsp
3a5f5c285d
tweaked import
2023-05-29 21:39:38 +03:00
andzejsp
ac21d758a7
Merge branch 'main' into chat-box
2023-05-29 21:28:53 +03:00
andzejsp
f0f41230ae
moar
2023-05-29 21:28:25 +03:00
Saifeddine ALOUI
6bee09a734
upgraded code
2023-05-29 20:24:25 +02:00
andzejsp
f76b74310a
added import discussion
2023-05-29 21:20:37 +03:00
andzejsp
7c5e0b45ff
small fixes
2023-05-29 20:43:53 +03:00
AndzejsP
e3aaf9ad28
needs more work
2023-05-29 17:01:47 +03:00
AndzejsP
adc66ee015
wip
2023-05-29 16:39:00 +03:00
AndzejsP
9ea52d3b90
dropzone in progress
2023-05-29 16:26:25 +03:00
AndzejsP
d1f39be021
removed unused stuff
2023-05-29 14:56:56 +03:00
AndzejsP
28cd7d0b99
moved helper func to a plugin
2023-05-29 13:38:02 +03:00
AndzejsP
c72e249b89
drag and drop wip
2023-05-29 10:37:27 +03:00
AndzejsP
bd9a3c0f98
button fixes
2023-05-29 09:52:53 +03:00
AndzejsP
8f5267f5ad
moved warning
2023-05-29 09:30:29 +03:00
AndzejsP
572980b3cd
added disk usage and si units
2023-05-29 09:19:00 +03:00