Skip to content

Latest commit

 

History

History
78 lines (52 loc) · 2.25 KB

api_keys_tool.md

File metadata and controls

78 lines (52 loc) · 2.25 KB

API keys for Tool Tasks

In order to evaluate in Tool tasks, you need to get the following API keys and put them in .env file.

🔙Back to README.md

1. Academia

There is no need to get an API key for Academia.

2. Weather

There is no need to get an API key for Weather.

3. Movie

Step 1. Sign up an account in https://www.themoviedb.org/

Step 2. You can find your API Read Access Token in https://www.themoviedb.org/settings/api

Step 3. Put the API Read Access Token in .env:

MOVIE_KEY=${YOUR_API_READ_ACCESS_TOKEN}

4. Todo

Step 1. Sign up an account in https://todoist.com/

Step 2. You can find your API Token in https://todoist.com/app/settings/integrations/developer

Step 3. Put the API Token in .env:

TODO_KEY=${YOUR_TODO_API_TOKEN}

5. Sheet

We provide a video which shows how to obtain the Google Sheet credential.json file.

The orginal Google Sheet data is in this link.

Step 1. Sign up a Google Account

Step 2. Sign in https://console.cloud.google.com/welcome

Step 3. Create a new project

Step 4. Select the new project

Step 5. Select API & Services

Step 6. Click + Enable APIS AND SERVICES

Step 7. Search and Enable Google Sheets API and Google Drive API

Step 8. Click API & Services/Credential and click + CREATE CREDENTIALS

Step 9. After you create a service account, click the service account which you just created.

Step 10. Click KEYS.

Step 11. Click ADD KEY, then click Create new key and select JSON.

Step 12. Name the file as credential.json and put it in agentboard/utils/sheet/

Step 13. Put the Google Account Email in .env:

SHEET_EMAIL=${YOUR_GOOGLE_ACCOUNT_EMAIL}