File size: 492 Bytes
8d88d9b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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",
    }]
  }
]`

```