Minor updates to READMEs (#12642)

This commit is contained in:
Lance Martin
2023-10-31 08:34:46 -07:00
committed by GitHub
parent 88f0f1e73b
commit 944cb552bb
3 changed files with 10 additions and 5 deletions

View File

@@ -34,9 +34,9 @@ langchain app add plate-chain
Then add the following code to your `server.py` file:
```python
from plate_chain import chain as plate_chain_chain
from plate_chain import chain as plate_chain
add_routes(app, plate_chain_chain, path="/plate-chain")
add_routes(app, plate_chain, path="/plate-chain")
```
(Optional) For configuring LangSmith, which helps trace, monitor and debug LangChain applications, use the following code: