Fix typo in README.md (#322)

This commit is contained in:
Yulong Wang
2024-04-18 01:07:02 -07:00
committed by GitHub
parent 50cd5e27f2
commit 4244bab90e
+1 -1
View File
@@ -96,7 +96,7 @@ As an aside for those already familiar with LangChain - `add_node` actually take
```python
def call_oracle(messages: list):
return model.invoke(message)
return model.invoke(messages)
graph.add_node("oracle", call_oracle)
```