Skip to content

Commit

Permalink
adding mistral ai provider
Browse files Browse the repository at this point in the history
  • Loading branch information
icebaker committed Dec 28, 2023
1 parent 1fd0821 commit 6e1b384
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,7 @@ Nano Bots should be **provider-agnostic**, which means that the same Nano Bot sh
Examples of popular providers include:

- [Open AI ChatGPT](https://platform.openai.com/docs/api-reference)
- [Mistral AI](https://docs.mistral.ai/api/)
- [Google Gemini](https://cloud.google.com/vertex-ai/docs/generative-ai/model-reference/gemini)
- [Anthropic Claude](https://www.anthropic.com)
- [Cohere Command](https://cohere.com)
Expand Down Expand Up @@ -898,6 +899,27 @@ provider:
tool_choice: auto
```

### Mistral AI

API Documentation: https://docs.mistral.ai/api/

```yaml
---
provider:
id: mistral
credentials:
address: ENV/MISTRAL_API_ADDRESS
api-key: ENV/MISTRAL_API_KEY
settings:
model: mistral-medium
temperature: 0.7
top_p: 1
max_tokens: null
stream: true
safe_mode: false
random_seed: null
```

### Google Gemini

API Documentation: https://cloud.google.com/vertex-ai/docs/generative-ai/model-reference/gemini
Expand Down

0 comments on commit 6e1b384

Please sign in to comment.