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
Saifeddine ALOUI
fa4b1d3005
Merge pull request #331 from ParisNeo/ParisNeo-patch-20
...
Update requirements.txt
2023-07-21 17:54:29 +02:00
Saifeddine ALOUI
30e50197c1
Update requirements.txt
2023-07-21 17:54:16 +02:00
Saifeddine ALOUI
97423f6ea6
Merge pull request #330 from ParisNeo/ParisNeo-patch-19
...
Update requirements.txt
2023-07-21 17:52:36 +02:00
Saifeddine ALOUI
7cac71188b
Update requirements.txt
2023-07-21 17:52:23 +02:00
saloui
f9cc998285
upgraded
2023-07-21 17:01:08 +02:00
saloui
d2ae6c8949
added update for macos
2023-07-21 15:39:40 +02:00
saloui
df5e2fc95b
bugfixes in install scripts
2023-07-21 15:38:45 +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
Saifeddine ALOUI
05dc9a254a
fixed parameters forwarding for linux
2023-07-19 22:05:36 +02:00
saloui
d741fad842
upgraded
2023-07-19 17:48:31 +02:00
saloui
857a97be1c
enhanced
2023-07-19 17:41:23 +02:00
saloui
86f7c651ce
updated
2023-07-18 16:39:05 +02:00
Saifeddine ALOUI
be86fc9613
added support for bindings loading
2023-07-18 01:04:48 +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
0bfab577cc
upgraded
2023-07-15 23:08:19 +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
e56af6a86b
upgrade
2023-07-15 20:30:36 +02:00
Saifeddine ALOUI
9b839eb6c3
enhanced
2023-07-15 20:10:26 +02:00
Saifeddine ALOUI
8d3d288b64
updated
2023-07-15 20:10:22 +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
Saifeddine ALOUI
f3dc73a8b3
Merge pull request #326 from signalprime/patch-1
...
Update DiscussionsView.vue for Import Dropdown to handle both LOLLMS and CHATGPT
2023-07-15 16:41:01 +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
967b9dc416
enhanced
2023-07-15 12:37:57 +02: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
0747701a24
UPDATED
2023-07-14 02:29:58 +02:00
Saifeddine ALOUI
b72542c319
upgraded
2023-07-14 01:42:29 +02:00
saloui
34fb6a8a83
updated (to be reviewed)
2023-07-13 19:26:15 +02:00
saloui
126b85868e
Preparing for separated connections
2023-07-13 16:49:54 +02:00
Saifeddine ALOUI
703c34ed30
updated
2023-07-13 01:18:19 +02:00
Saifeddine ALOUI
e2012922ff
bugfix
2023-07-12 23:36:18 +02:00