Skip to content

Commit

Permalink
Rebase the 5th june
Browse files Browse the repository at this point in the history
  • Loading branch information
pprados committed Jun 5, 2023
1 parent 87321f5 commit c45dde5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions langchain/agents/load_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from langchain.chains.llm_math.base import LLMMathChain
from langchain.chains.pal.base import PALChain
from langchain.requests import TextRequestsWrapper
from langchain.tools.google_drive import GoogleDriveSearchTool
from langchain.tools.google_drive.tool import GoogleDriveSearchTool
from langchain.tools.arxiv.tool import ArxivQueryRun
from langchain.tools.pubmed.tool import PubmedQueryRun
from langchain.tools.base import BaseTool
Expand Down Expand Up @@ -452,8 +452,8 @@ def load_tools(
def get_all_tool_names() -> List[str]:
"""Get a list of all possible tool names."""
return (
list(_BASE_TOOLS)
+ list(_EXTRA_OPTIONAL_TOOLS)
+ list(_EXTRA_LLM_TOOLS)
+ list(_LLM_TOOLS)
list(_BASE_TOOLS)
+ list(_EXTRA_OPTIONAL_TOOLS)
+ list(_EXTRA_LLM_TOOLS)
+ list(_LLM_TOOLS)
)

0 comments on commit c45dde5

Please sign in to comment.