mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
* Adding More Info To The Docs * Start of main page rebuild and adding new folders * Starting to move the AutoGPT(agent) Docs to a subfolder and start setup forge's subfolder * small fixes in links * fix file name * added the benchmakrs page * added front-end page * re-aranging the layout * moved the config section to be under the AutoGPT folder * fix image link * moved "Share Logs" and "Testing" to be under the AutoGPT folder * index.md: fix broken links on home page * Index.md: Testing Something with the links * index.md: Added the Benchmarks section * small fix for Frontend * Added a chat ai to the docs for testing as part of #5694 * index.md: sepetating the sections and making it easier to read * index.md: Added discord Link * index.md: Added better info to each section from @Yash-Ambekar * index.md: trying to fix the layout * Index.md: updating layout * Move Docker Setup To Its Own File * small fix * seperating the installation setups to there own page for making things clear * small fix in links * fix links again * change nav titles color to help make things clear * fix css * mv custom.css * fix for css not working * rm custom css as it didnt work * fix img * update image url * update nav * index.md: improving layout and wordings * index.md: testing line breaks * index.md: Fixed the line breaks * setup/docker-setp.md: small fix * Docker-setup.md update link to correct memory page * docker-setup.md: added note about docker install being broken * Docker-Setup.md: Updating the warning * Docker-Setup.md : Test * docker-setup.md: fix * docker-setup.md: fix * docker-setup.md final update to the warning * Docker-Setup.md * Updates to mkdocs.yml and docker-setup based on the feedback * fix to docker-setup.md * docker-setup.md fix * introduction.md: fix * Update docs/content/AutoGPT/Setups/Docker-setup.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * docker-setup.md update link * Update docs/content/AutoGPT/Setups/Git-setup.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * Update docs/content/AutoGPT/Setups/Git-setup.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * nogit-setup.md: updated links * Update docs/content/AutoGPT/Setups/Git-setup.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * Update docs/content/index.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * Update docs/content/index.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * Update docs/content/index.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * Update docs/content/index.md Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> * setup.md: added extra info about the docker insall * setup.md small changs to clean things up * removed emojis from forge get-started.md * get-started.md - small changes * Update AutoGPT intro in index.md --------- Co-authored-by: sohamtembhurne <sohamatembhurne@outlook.com> Co-authored-by: Yash-Ambekar <yashambekar03@gmail.com> Co-authored-by: Nicholas Tindle <nicholas.tindle@agpt.co> Co-authored-by: Andy Hooker <58448663+andrewhooker2@users.noreply.github.com> Co-authored-by: Reinier van der Leer <pwuts@agpt.co>
38 lines
1.9 KiB
Markdown
38 lines
1.9 KiB
Markdown
## 🔍 Google API Keys Configuration
|
|
|
|
!!! note
|
|
This section is optional. Use the official Google API if search attempts return
|
|
error 429. To use the `google_official_search` command, you need to set up your
|
|
Google API key in your environment variables.
|
|
|
|
Create your project:
|
|
|
|
1. Go to the [Google Cloud Console](https://console.cloud.google.com/).
|
|
2. If you don't already have an account, create one and log in
|
|
3. Create a new project by clicking on the *Select a Project* dropdown at the top of the
|
|
page and clicking *New Project*
|
|
4. Give it a name and click *Create*
|
|
5. Set up a custom search API and add to your .env file:
|
|
5. Go to the [APIs & Services Dashboard](https://console.cloud.google.com/apis/dashboard)
|
|
6. Click *Enable APIs and Services*
|
|
7. Search for *Custom Search API* and click on it
|
|
8. Click *Enable*
|
|
9. Go to the [Credentials](https://console.cloud.google.com/apis/credentials) page
|
|
10. Click *Create Credentials*
|
|
11. Choose *API Key*
|
|
12. Copy the API key
|
|
13. Set it as the `GOOGLE_API_KEY` in your `.env` file
|
|
14. [Enable](https://console.developers.google.com/apis/api/customsearch.googleapis.com)
|
|
the Custom Search API on your project. (Might need to wait few minutes to propagate.)
|
|
Set up a custom search engine and add to your .env file:
|
|
15. Go to the [Custom Search Engine](https://cse.google.com/cse/all) page
|
|
16. Click *Add*
|
|
17. Set up your search engine by following the prompts.
|
|
You can choose to search the entire web or specific sites
|
|
18. Once you've created your search engine, click on *Control Panel*
|
|
19. Click *Basics*
|
|
20. Copy the *Search engine ID*
|
|
21. Set it as the `CUSTOM_SEARCH_ENGINE_ID` in your `.env` file
|
|
|
|
_Remember that your free daily custom search quota allows only up to 100 searches. To increase this limit, you need to assign a billing account to the project to profit from up to 10K daily searches._
|