diff --git a/Readme.md b/Readme.md index 9348b5a..14f487d 100644 --- a/Readme.md +++ b/Readme.md @@ -120,7 +120,7 @@ foreach ($client->chatStream($messages) as $chunk) { $apiKey = 'YOUR_PRIVATE_MISTRAL_KEY'; $strings = ['Hello', 'World', 'Hello World']; -$client = new Client($apiKey); +$client = new MistralClient($apiKey); $embeddings = $client->embeddings($strings); print_r($embeddings); ```