BotSharp/docs/llm/provider.md
2023-12-11 17:15:08 -06:00

13 lines
406 B
Markdown

# LLM Provider
`BotSharp` can support multiple LLM providers through plug-ins.
You can set the names of `Provider` and `Model` in each round of dialogue to control the LLM that should be used in the current dialogue, or you can also specify the LLM used in subsequent dialogues once during dialogue initialization.
```json
{
"text": "Good morning!",
"provider": "google-ai",
"model": "palm2"
}
```