mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
upgraded references
This commit is contained in:
parent
6fc35f0730
commit
af64396178
@ -12,4 +12,4 @@
|
|||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
This project is licensed under the Apache 2.0 License. See the [LICENSE](https://github.com/nomic-ai/GPT4All-ui/blob/main/LICENSE) file for details.
|
This project is licensed under the Apache 2.0 License. See the [LICENSE](https://github.com/ParisNeo/GPT4All-ui/blob/main/LICENSE) file for details.
|
||||||
|
@ -20,7 +20,7 @@ from tqdm import tqdm
|
|||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import yaml
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
import sqlite3
|
import sqlite3
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
from config import load_config, save_config
|
from config import load_config, save_config
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
2
app.py
2
app.py
@ -10,7 +10,7 @@
|
|||||||
######
|
######
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ from api.config import load_config
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ import yaml
|
|||||||
from ctransformers import AutoModelForCausalLM
|
from ctransformers import AutoModelForCausalLM
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
|
|
||||||
# This binding is a wrapper to gpt4all's official binding
|
# This binding is a wrapper to gpt4all's official binding
|
||||||
# Follow him on his github project : https://github.com/nomic-ai/gpt4all
|
# Follow him on his github project : https://github.com/ParisNeo/gpt4all
|
||||||
|
|
||||||
######
|
######
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
@ -19,7 +19,7 @@ from api.binding import LLMBinding
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ from pygptj.model import Model
|
|||||||
from api.binding import LLMBinding
|
from api.binding import LLMBinding
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ from api.binding import LLMBinding
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ import yaml
|
|||||||
import random
|
import random
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ import yaml
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ from api.binding import LLMBinding
|
|||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
__author__ = "parisneo"
|
__author__ = "parisneo"
|
||||||
__github__ = "https://github.com/nomic-ai/gpt4all-ui"
|
__github__ = "https://github.com/ParisNeo/gpt4all-ui"
|
||||||
__copyright__ = "Copyright 2023, "
|
__copyright__ = "Copyright 2023, "
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
2. Open Terminal/PowerShell and navigate to a folder you want to clone this repository.
|
2. Open Terminal/PowerShell and navigate to a folder you want to clone this repository.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/nomic-ai/gpt4all-ui.git
|
git clone https://github.com/ParisNeo/gpt4all-ui.git
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Install/run application by double clicking on `webui.bat` file from Windows explorer as normal user.
|
4. Install/run application by double clicking on `webui.bat` file from Windows explorer as normal user.
|
||||||
@ -87,7 +87,7 @@ sudo pacman -S curl git python3
|
|||||||
2. Clone repository:
|
2. Clone repository:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/nomic-ai/gpt4all-ui.git
|
git clone https://github.com/ParisNeo/gpt4all-ui.git
|
||||||
```
|
```
|
||||||
```bash
|
```bash
|
||||||
cd gpt4all-ui
|
cd gpt4all-ui
|
||||||
@ -116,7 +116,7 @@ brew install git python3
|
|||||||
3. Clone repository:
|
3. Clone repository:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/nomic-ai/gpt4all-ui.git
|
git clone https://github.com/ParisNeo/gpt4all-ui.git
|
||||||
```
|
```
|
||||||
```bash
|
```bash
|
||||||
cd gpt4all-ui
|
cd gpt4all-ui
|
||||||
|
2
setup.py
2
setup.py
@ -23,7 +23,7 @@ setuptools.setup(
|
|||||||
description="A web ui for running chat models with different bindings. Supports multiple personalities and extensions.",
|
description="A web ui for running chat models with different bindings. Supports multiple personalities and extensions.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/nomic-ai/gpt4all-ui",
|
url="https://github.com/ParisNeo/gpt4all-ui",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
extras_require={"dev": requirements_dev},
|
extras_require={"dev": requirements_dev},
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
<ul class="list-disc list-inside mb-4">
|
<ul class="list-disc list-inside mb-4">
|
||||||
<li>@ParisNeo : Creator of the project and Lead developer</li>
|
<li>@ParisNeo : Creator of the project and Lead developer</li>
|
||||||
<li>@AndriyMulyar : CEO of Nomic-ai who offered to link the project as their official ui for GPT4All</li>
|
<li>@AndriyMulyar : CEO of Nomic-ai who offered to link the project as their official ui for GPT4All</li>
|
||||||
<li><a href="https://github.com/nomic-ai/gpt4all-ui/graphs/contributors" target="_blank" class="text-blue-900 dark:text-blue-600">A number of very talented open-source developers without whom this project wouldn't be as awesome as it is.</a></li>
|
<li><a href="https://github.com/ParisNeo/gpt4all-ui/graphs/contributors" target="_blank" class="text-blue-900 dark:text-blue-600">A number of very talented open-source developers without whom this project wouldn't be as awesome as it is.</a></li>
|
||||||
<li> We also appreciate the support of the users of this tool who have helped us in various ways.</li>
|
<li> We also appreciate the support of the users of this tool who have helped us in various ways.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
2
web/dist/assets/index-2548679d.js
vendored
2
web/dist/assets/index-2548679d.js
vendored
File diff suppressed because one or more lines are too long
@ -2,7 +2,7 @@
|
|||||||
<div class="sticky bottom-0 p-6 bg-bg-light-tone dark:bg-bg-dark-tone shadow-inner ">
|
<div class="sticky bottom-0 p-6 bg-bg-light-tone dark:bg-bg-dark-tone shadow-inner ">
|
||||||
<!-- <hr class="container flex flex-col sm:flex-row item-center py-0 h-0 border-bg-dark dark:border-bg-light"> -->
|
<!-- <hr class="container flex flex-col sm:flex-row item-center py-0 h-0 border-bg-dark dark:border-bg-light"> -->
|
||||||
<div class="flex justify-center flex-row items-center gap-2 p-1 ">
|
<div class="flex justify-center flex-row items-center gap-2 p-1 ">
|
||||||
Visit <a class=" hover:text-primary duration-150" href="https://github.com/nomic-ai/gpt4all-ui"
|
Visit <a class=" hover:text-primary duration-150" href="https://github.com/ParisNeo/gpt4all-ui"
|
||||||
target="_blank">github repository</a> to learn more
|
target="_blank">github repository</a> to learn more
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
</RouterLink>
|
</RouterLink>
|
||||||
<!-- GITHUB AND THEME BUTTONS -->
|
<!-- GITHUB AND THEME BUTTONS -->
|
||||||
<div class="flex gap-3 flex-1 items-center justify-end">
|
<div class="flex gap-3 flex-1 items-center justify-end">
|
||||||
<a href="https://github.com/nomic-ai/gpt4all-ui" target="_blank">
|
<a href="https://github.com/ParisNeo/gpt4all-ui" target="_blank">
|
||||||
|
|
||||||
<div class="text-2xl hover:text-primary duration-150" title="Visit repository page">
|
<div class="text-2xl hover:text-primary duration-150" title="Visit repository page">
|
||||||
<i data-feather="github"></i>
|
<i data-feather="github"></i>
|
||||||
|
Loading…
Reference in New Issue
Block a user