Commit Graph

1359 Commits

Author SHA1 Message Date
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
Saifeddine ALOUI
22b3ebd4dc
Update README.md 2023-07-11 22:00:59 +02:00
Saifeddine ALOUI
ad8fce1fa3
Merge pull request #321 from ParisNeo/ParisNeo-patch-14
Update README.md
2023-07-11 21:58:46 +02:00
Saifeddine ALOUI
bec6bd6223
Update README.md 2023-07-11 21:58:37 +02:00
Saifeddine ALOUI
a1909f9d4e
Merge pull request #320 from ParisNeo/ParisNeo-patch-13
Update README.md
2023-07-11 21:48:34 +02:00
Saifeddine ALOUI
b67f59b2f4
Update README.md 2023-07-11 21:48:23 +02:00
Saifeddine ALOUI
466231139e fixed discussions problem 2023-07-11 21:42:23 +02:00
saloui
ed9e51597d upgraded install 2023-07-11 15:50:45 +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
02dd6aadf4 bugfix 2023-07-08 00:25:04 +02:00