Liam Dyer
Hosted Documentation (#1155)
b88a126 unverified
# LangServe
| Feature | Available |
| --------------------------- | --------- |
| [Tools](../tools) | No |
| [Multimodal](../multimodal) | No |
LangChain applications that are deployed using LangServe can be called with the following config:
```ini
MODELS=`[
{
"name": "summarization-chain",
"displayName": "Summarization Chain"
"endpoints" : [{
"type": "langserve",
"url" : "http://127.0.0.1:8100",
}]
}
]`
```