mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-21 23:22:05 +00:00

Co-authored-by: Jack Gerrits <jack@jackgerrits.com> Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
26 lines
1.2 KiB
Markdown
26 lines
1.2 KiB
Markdown
## AutoGen.Mistral overview
|
|
|
|
AutoGen.Mistral provides the following agent(s) to connect to [Mistral.AI](https://mistral.ai/) platform.
|
|
- @AutoGen.Mistral.MistralClientAgent: A slim wrapper agent over @AutoGen.Mistral.MistralClient.
|
|
|
|
### Get started with AutoGen.Mistral
|
|
|
|
To get started with AutoGen.Mistral, follow the [installation guide](Installation.md) to make sure you add the AutoGen feed correctly. Then add the `AutoGen.Mistral` package to your project file.
|
|
|
|
```bash
|
|
dotnet add package AutoGen.Mistral
|
|
```
|
|
|
|
>[!NOTE]
|
|
> You need to provide an api-key to use Mistral models which will bring additional cost while using. you can get the api key from [Mistral.AI](https://mistral.ai/).
|
|
|
|
### Example
|
|
|
|
Import the required namespace
|
|
[!code-csharp[](../../samples/AgentChat/Autogen.Basic.Sample/CodeSnippet/MistralAICodeSnippet.cs?name=using_statement)]
|
|
|
|
Create a @AutoGen.Mistral.MistralClientAgent and start chatting!
|
|
[!code-csharp[](../../samples/AgentChat/Autogen.Basic.Sample/CodeSnippet/MistralAICodeSnippet.cs?name=create_mistral_agent)]
|
|
|
|
Use @AutoGen.Core.IStreamingAgent.GenerateStreamingReplyAsync* to stream the chat completion.
|
|
[!code-csharp[](../../samples/AgentChat/Autogen.Basic.Sample/CodeSnippet/MistralAICodeSnippet.cs?name=streaming_chat)] |