Commit Graph

1375 Commits

Author SHA1 Message Date
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
saloui
fb834e1dff added tracing of error 2023-07-12 17:48:39 +02:00
saloui
c1bd8edc8d updated 2023-07-12 17:03:16 +02:00
saloui
480f6b1446 updated 2023-07-12 17:02:55 +02:00
saloui
e196b39056 upgraded code and scripts 2023-07-12 17:02:35 +02:00
saloui
f339c02668 Upgraded install scripts 2023-07-12 15:01:20 +02:00
saloui
6d0316b8fa removed pywhispercpp 2023-07-12 09:48:34 +02:00
saloui
7c2d741247 update 2023-07-12 09:36:45 +02:00
Saifeddine ALOUI
768aeb2c4d Merge branch 'main' of https://github.com/nomic-ai/gpt4all-ui 2023-07-12 00:36:01 +02:00
Saifeddine ALOUI
874d497b35 upgraded version 2023-07-12 00:35:59 +02:00
Saifeddine ALOUI
40df71a4f7
Merge pull request #325 from ParisNeo/ParisNeo-patch-18
Update README.md
2023-07-11 23:26:07 +02:00
Saifeddine ALOUI
bf5c96f81a
Update README.md 2023-07-11 23:11:23 +02:00
Saifeddine ALOUI
48a31f2202
Merge pull request #324 from ParisNeo/ParisNeo-patch-17
Update README.md
2023-07-11 22:59:43 +02:00
Saifeddine ALOUI
d54c198146
Update README.md 2023-07-11 22:56:56 +02:00
Saifeddine ALOUI
4a3a10637f
Merge pull request #323 from ParisNeo/ParisNeo-patch-16
Update README.md
2023-07-11 22:33:28 +02:00
Saifeddine ALOUI
7c57c13e7b
Update README.md 2023-07-11 22:33:15 +02:00
Saifeddine ALOUI
9e81055007
Merge pull request #322 from ParisNeo/ParisNeo-patch-15
Update README.md
2023-07-11 22:01:09 +02:00