langchain: fix syntax error in code comment for create_tool_calling_agent (#21205)

**PR message**:
- **Description:** Corrected a syntax error in the code comments within
the `create_tool_calling_agent` function in the langchain package.
- **Issue:** N/A
- **Dependencies:** No additional dependencies required.
- **Twitter handle:** N/A
pull/21219/head^2
xindoo 1 month ago committed by GitHub
parent eb0a2fd53a
commit c1aa237bc2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -38,7 +38,7 @@ def create_tool_calling_agent(
prompt = ChatPromptTemplate.from_messages(
[
("system", "You are a helpful assistant"),
("placeholder", "{chat_history}",
("placeholder", "{chat_history}"),
("human", "{input}"),
("placeholder", "{agent_scratchpad}"),
]

Loading…
Cancel
Save