Use term keyword according to the official python doc glossary (#11338)

- **Description:** use term keyword according to the official python doc
glossary, see https://docs.python.org/3/glossary.html
  - **Issue:** not applicable
  - **Dependencies:** not applicable
  - **Tag maintainer:** @hwchase17
  - **Twitter handle:** vreyespue
This commit is contained in:
Vicente Reyes
2023-10-03 21:56:08 +02:00
committed by GitHub
parent 39316314fa
commit f3e13e7e5a
29 changed files with 37 additions and 37 deletions

View File

@@ -54,7 +54,7 @@ prompt = ChatPromptTemplate.from_messages([
```
How does the agent know what tools it can use?
Those are passed in as a separate argument, so we can bind those as key word arguments to the LLM.
Those are passed in as a separate argument, so we can bind those as keyword arguments to the LLM.
```python
from langchain.tools.render import format_tool_to_openai_function