mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-22 00:14:23 +01:00
Update documentation URLs to docs.agpt.co (#3621)
This commit is contained in:
committed by
GitHub
parent
6ae90a3ea2
commit
d8968ae899
@@ -8,7 +8,7 @@ This document provides guidelines and best practices to help you contribute effe
|
|||||||
|
|
||||||
By participating in this project, you agree to abide by our [Code of Conduct]. Please read it to understand the expectations we have for everyone who contributes to this project.
|
By participating in this project, you agree to abide by our [Code of Conduct]. Please read it to understand the expectations we have for everyone who contributes to this project.
|
||||||
|
|
||||||
[Code of Conduct]: https://significant-gravitas.github.io/Auto-GPT/code-of-conduct.md
|
[Code of Conduct]: https://docs.agpt.co/code-of-conduct/
|
||||||
|
|
||||||
## 📢 A Quick Word
|
## 📢 A Quick Word
|
||||||
Right now we will not be accepting any Contributions that add non-essential commands to Auto-GPT.
|
Right now we will not be accepting any Contributions that add non-essential commands to Auto-GPT.
|
||||||
@@ -101,7 +101,7 @@ https://github.com/Significant-Gravitas/Auto-GPT/pulls?q=is%3Apr+is%3Aopen+-labe
|
|||||||
If you add or change code, make sure the updated code is covered by tests.
|
If you add or change code, make sure the updated code is covered by tests.
|
||||||
To increase coverage if necessary, [write tests using pytest].
|
To increase coverage if necessary, [write tests using pytest].
|
||||||
|
|
||||||
For more info on running tests, please refer to ["Running tests"](https://significant-gravitas.github.io/Auto-GPT/testing/).
|
For more info on running tests, please refer to ["Running tests"](https://docs.agpt.co/testing/).
|
||||||
|
|
||||||
[write tests using pytest]: https://realpython.com/pytest-python-testing/
|
[write tests using pytest]: https://realpython.com/pytest-python-testing/
|
||||||
|
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -100,21 +100,21 @@ Your support is greatly appreciated. Development of this free, open-source proje
|
|||||||
|
|
||||||
Please see the [documentation][docs] for full setup instructions and configuration options.
|
Please see the [documentation][docs] for full setup instructions and configuration options.
|
||||||
|
|
||||||
[docs]: https://significant-gravitas.github.io/Auto-GPT/
|
[docs]: https://docs.agpt.co/
|
||||||
|
|
||||||
## 📖 Documentation
|
## 📖 Documentation
|
||||||
* [⚙️ Setup][docs/setup]
|
* [⚙️ Setup][docs/setup]
|
||||||
* [💻 Usage][docs/usage]
|
* [💻 Usage][docs/usage]
|
||||||
* [🔌 Plugins][docs/plugins]
|
* [🔌 Plugins][docs/plugins]
|
||||||
* Configuration
|
* Configuration
|
||||||
* [🔍 Web Search](https://significant-gravitas.github.io/Auto-GPT/configuration/search/)
|
* [🔍 Web Search](https://docs.agpt.co/configuration/search/)
|
||||||
* [🧠 Memory](https://significant-gravitas.github.io/Auto-GPT/configuration/memory/)
|
* [🧠 Memory](https://docs.agpt.co/configuration/memory/)
|
||||||
* [🗣️ Voice (TTS)](https://significant-gravitas.github.io/Auto-GPT/configuration/voice/)
|
* [🗣️ Voice (TTS)](https://docs.agpt.co/configuration/voice/)
|
||||||
* [🖼️ Image Generation](https://significant-gravitas.github.io/Auto-GPT/configuration/imagegen/)
|
* [🖼️ Image Generation](https://docs.agpt.co/configuration/imagegen/)
|
||||||
|
|
||||||
[docs/setup]: https://significant-gravitas.github.io/Auto-GPT/setup/
|
[docs/setup]: https://docs.agpt.co/setup/
|
||||||
[docs/usage]: https://significant-gravitas.github.io/Auto-GPT/usage/
|
[docs/usage]: https://docs.agpt.co/usage/
|
||||||
[docs/plugins]: https://significant-gravitas.github.io/Auto-GPT/plugins/
|
[docs/plugins]: https://docs.agpt.co/plugins/
|
||||||
|
|
||||||
## ⚠️ Limitations
|
## ⚠️ Limitations
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ def retry_openai_api(
|
|||||||
api_key_error_msg = (
|
api_key_error_msg = (
|
||||||
f"Please double check that you have setup a "
|
f"Please double check that you have setup a "
|
||||||
f"{Fore.CYAN + Style.BRIGHT}PAID{Style.RESET_ALL} OpenAI API Account. You can "
|
f"{Fore.CYAN + Style.BRIGHT}PAID{Style.RESET_ALL} OpenAI API Account. You can "
|
||||||
f"read more here: {Fore.CYAN}https://significant-gravitas.github.io/Auto-GPT/setup/#getting-an-api-key{Fore.RESET}"
|
f"read more here: {Fore.CYAN}https://docs.agpt.co/setup/#getting-an-api-key{Fore.RESET}"
|
||||||
)
|
)
|
||||||
backoff_msg = (
|
backoff_msg = (
|
||||||
f"{Fore.RED}Error: API Bad gateway. Waiting {{backoff}} seconds...{Fore.RESET}"
|
f"{Fore.RED}Error: API Bad gateway. Waiting {{backoff}} seconds...{Fore.RESET}"
|
||||||
@@ -174,7 +174,7 @@ def create_chat_completion(
|
|||||||
if not warned_user:
|
if not warned_user:
|
||||||
logger.double_check(
|
logger.double_check(
|
||||||
f"Please double check that you have setup a {Fore.CYAN + Style.BRIGHT}PAID{Style.RESET_ALL} OpenAI API Account. "
|
f"Please double check that you have setup a {Fore.CYAN + Style.BRIGHT}PAID{Style.RESET_ALL} OpenAI API Account. "
|
||||||
+ f"You can read more here: {Fore.CYAN}https://significant-gravitas.github.io/Auto-GPT/setup/#getting-an-api-key{Fore.RESET}"
|
+ f"You can read more here: {Fore.CYAN}https://docs.agpt.co/setup/#getting-an-api-key{Fore.RESET}"
|
||||||
)
|
)
|
||||||
warned_user = True
|
warned_user = True
|
||||||
except (APIError, Timeout) as e:
|
except (APIError, Timeout) as e:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Auto-GPT
|
# Auto-GPT
|
||||||
|
|
||||||
Welcome to Auto-GPT. Please follow the [Installation](https://significant-gravitas.github.io/Auto-GPT/setup/) guide to get started.
|
Welcome to Auto-GPT. Please follow the [Installation](/setup/) guide to get started.
|
||||||
|
|
||||||
It is recommended to use a virtual machine for tasks that require high security measures to prevent any potential harm to the main computer's system and data.
|
It is recommended to use a virtual machine for tasks that require high security measures to prevent any potential harm to the main computer's system and data.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
site_name: Auto-GPT
|
site_name: Auto-GPT
|
||||||
site_url: https://significantgravitas.github.io/Auto-GPT/
|
site_url: https://docs.agpt.co/
|
||||||
repo_url: https://github.com/Significant-Gravitas/Auto-GPT
|
repo_url: https://github.com/Significant-Gravitas/Auto-GPT
|
||||||
nav:
|
nav:
|
||||||
- Home: index.md
|
- Home: index.md
|
||||||
|
|||||||
Reference in New Issue
Block a user