You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was going through the documentation for creating a custom agent (https://python.langchain.com/en/latest/modules/agents/agents/custom_agent.html) and noticed a potential typo. In the section discussing the components of a custom agent, the text mentions that an agent consists of "three parts" but only two are listed: "Tools" and "The agent class itself".
I believe the text should say "two parts" instead of "three". Could you please confirm if this is a typo, or if there's a missing third part that needs to be included in the list?
The text was updated successfully, but these errors were encountered:
# Fixed typos (issues #4818 & #4668 & more typos)
- At some places, it said `model = ChatOpenAI(model='gpt-3.5-turbo')`
but should be `model = ChatOpenAI(model_name='gpt-3.5-turbo')`
- Fixes some other typos
Fixes#4818, #4668
## Who can review?
Community members can review the PR once tests pass. Tag
maintainers/contributors who might be interested:
Models
- @hwchase17
- @agola11
Agents / Tools / Toolkits
- @vowelparrot
Issue with current documentation:
https://python.langchain.com/en/latest/modules/agents/agents/custom_agent.html
Idea or request for content:
I was going through the documentation for creating a custom agent (https://python.langchain.com/en/latest/modules/agents/agents/custom_agent.html) and noticed a potential typo. In the section discussing the components of a custom agent, the text mentions that an agent consists of "three parts" but only two are listed: "Tools" and "The agent class itself".
I believe the text should say "two parts" instead of "three". Could you please confirm if this is a typo, or if there's a missing third part that needs to be included in the list?
The text was updated successfully, but these errors were encountered: