mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-28 14:35:00 +00:00
docs: Initial import from localai-website (#1312)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
parent
763f94ca80
commit
c5c77d2b0d
66 changed files with 6111 additions and 0 deletions
77
docs/content/integrations/autogpt4all.md
Normal file
77
docs/content/integrations/autogpt4all.md
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
+++
|
||||
disableToc = false
|
||||
title = "AutoGPT4all"
|
||||
weight = 2
|
||||
+++
|
||||
|
||||
AutoGPT4All provides you with both bash and python scripts to set up and configure [AutoGPT](https://github.com/Significant-Gravitas/Auto-GPT.git) running with the [GPT4All](#) model on the [LocalAI](https://github.com/go-skynet/LocalAI) server. This setup allows you to run queries against an open-source licensed model without any limits, completely free and offline.
|
||||
|
||||

|
||||
|
||||
Github Link - https://github.com/aorumbayev/autogpt4all
|
||||
|
||||
## 🚀 Quickstart
|
||||
|
||||
## Using Bash Script:
|
||||
|
||||
```sh
|
||||
git clone https://github.com/aorumbayev/autogpt4all.git
|
||||
cd autogpt4all
|
||||
chmod +x autogpt4all.sh
|
||||
./autogpt4all.sh
|
||||
```
|
||||
|
||||
### Using Python Script:
|
||||
|
||||
Make sure you have Python installed on your machine.
|
||||
|
||||
```sh
|
||||
git clone https://github.com/aorumbayev/autogpt4all.git
|
||||
cd autogpt4all
|
||||
python autogpt4all.py
|
||||
```
|
||||
|
||||
> ❗️ Please note this script has been primarily tested on MacOS with an M1 processor. It should work on Linux and Windows, but it has not been thoroughly tested on these platforms. If not on MacOS install git, go and make before running the script.
|
||||
|
||||
## 🎛️ Script Options
|
||||
|
||||
## For the bash script:
|
||||
|
||||
`--custom_model_url` - Specify a custom URL for the model download step. By default, the script will use https://gpt4all.io/models/ggml-gpt4all-l13b-snoozy.bin.
|
||||
|
||||
Example:
|
||||
|
||||
```
|
||||
./autogpt4all.sh --custom_model_url "https://example.com/path/to/model.bin"
|
||||
```
|
||||
|
||||
`--uninstall` - Uninstall the projects from your local machine by deleting the LocalAI and Auto-GPT directories.
|
||||
|
||||
Example:
|
||||
|
||||
```
|
||||
./autogpt4all.sh --uninstall
|
||||
```
|
||||
|
||||
> To recap the commands, a --help flag is also available for the bash script.
|
||||
|
||||
## For the Python Script:
|
||||
|
||||
You can use similar options as the bash script:
|
||||
|
||||
`--custom_model_url` - Specify a custom URL for the model download step.
|
||||
|
||||
Example:
|
||||
|
||||
```sh
|
||||
python autogpt4all.py --custom_model_url "https://example.com/path/to/model.bin"
|
||||
```
|
||||
|
||||
`--uninstall` - Uninstall the projects from your local machine.
|
||||
|
||||
Example:
|
||||
|
||||
```sh
|
||||
python autogpt4all.py --uninstall
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue