Remove three tools
Browse files
app.py
CHANGED
|
@@ -43,8 +43,7 @@ from langchain.chains.question_answering import load_qa_chain
|
|
| 43 |
news_api_key = os.environ["NEWS_API_KEY"]
|
| 44 |
tmdb_bearer_token = os.environ["TMDB_BEARER_TOKEN"]
|
| 45 |
|
| 46 |
-
TOOLS_LIST = ['serpapi', 'wolfram-alpha', 'pal-math', 'pal-colored-objects',
|
| 47 |
-
'open-meteo-api'] # 'google-search'
|
| 48 |
TOOLS_DEFAULT_LIST = ['serpapi', 'pal-math']
|
| 49 |
BUG_FOUND_MSG = "Congratulations, you've found a bug in this application!"
|
| 50 |
# AUTH_ERR_MSG = "Please paste your OpenAI key from openai.com to use this application. It is not necessary to hit a button or key after pasting it."
|
|
|
|
| 43 |
news_api_key = os.environ["NEWS_API_KEY"]
|
| 44 |
tmdb_bearer_token = os.environ["TMDB_BEARER_TOKEN"]
|
| 45 |
|
| 46 |
+
TOOLS_LIST = ['serpapi', 'wolfram-alpha', 'pal-math', 'pal-colored-objects'] #'google-search','news-api','tmdb-api','open-meteo-api'
|
|
|
|
| 47 |
TOOLS_DEFAULT_LIST = ['serpapi', 'pal-math']
|
| 48 |
BUG_FOUND_MSG = "Congratulations, you've found a bug in this application!"
|
| 49 |
# AUTH_ERR_MSG = "Please paste your OpenAI key from openai.com to use this application. It is not necessary to hit a button or key after pasting it."
|