-
Notifications
You must be signed in to change notification settings - Fork 260
fix(genapi): update deepseek-r1-distill-llama-70b.mdx #4545
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
6ea8d31
Update deepseek-r1-distill-llama-70b.mdx
fpagny bc23306
Update deepseek-r1-distill-llama-8b.mdx
fpagny 5007743
Update llama-3.3-70b-instruct.mdx
fpagny 25aef4d
Create mistral-small-24b-instruct-2501.mdx
fpagny 7203412
Update pages/managed-inference/reference-content/mistral-small-24b-in…
bene2k1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
pages/managed-inference/reference-content/mistral-small-24b-instruct-2501.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| --- | ||
| meta: | ||
| title: Understanding the Mistral-small-24b-base-2501 model | ||
| description: Deploy your own secure Mistral-small-24b-base-2501 model with Scaleway Managed Inference. Privacy-focused, fully managed. | ||
| content: | ||
| h1: Understanding the Mistral-small-24b-base-2501 model | ||
| paragraph: This page provides information on the Mistral-small-24b-base-2501 model | ||
| tags: | ||
| dates: | ||
| validation: 2025-03-04 | ||
| posted: 2025-03-04 | ||
| categories: | ||
| - ai-data | ||
| --- | ||
|
|
||
| ## Model overview | ||
|
|
||
| | Attribute | Details | | ||
| |-----------------|------------------------------------| | ||
| | Provider | [Mistral](https://mistral.ai/technology/#models) | | ||
| | Compatible Instances | L40S, H100, H100-2 (FP8) | | ||
| | Context size | 32K tokens | | ||
|
|
||
| ## Model name | ||
|
|
||
| ```bash | ||
| mistral/mistral-small-24b-instruct-2501:fp8 | ||
| ``` | ||
|
|
||
| ## Compatible Instances | ||
|
|
||
| | Instance type | Max context length | | ||
| | ------------- |-------------| | ||
| | L40 | 20k (FP8) | | ||
| | H100 | 32k (FP8) | | ||
| | H100-2 | 32k (FP8) | | ||
|
|
||
| ## Model introduction | ||
|
|
||
| Mistral Small 24B Instruct is a state-of-the-art transformer model of 24B parameters, built by Mistral. | ||
| This model is open-weight and distributed under the Apache 2.0 license. | ||
|
|
||
| ## Why is it useful? | ||
|
|
||
| - Mistral Small 24B offers a large context window of up to 32k tokens and provide both conversational and reasoning capabilities. | ||
| - This model supports multiple languages, including English, French, German, Spanish, Italian, Chinese, Japanese, Korean, Portuguese, Dutch, and Polish. | ||
| - It superseeds Mistral Nemo Instruct, although its tokens throughput is slightly lower. | ||
|
|
||
| ## How to use it | ||
|
|
||
| ### Sending Inference requests | ||
|
|
||
| To perform inference tasks with your Mistral model deployed at Scaleway, use the following command: | ||
|
|
||
| ```bash | ||
| curl -s \ | ||
| -H "Authorization: Bearer <IAM API key>" \ | ||
| -H "Content-Type: application/json" \ | ||
| --request POST \ | ||
| --url "https://<Deployment UUID>.ifr.fr-par.scaleway.com/v1/chat/completions" \ | ||
| --data '{"model":"mistral/mistral-small-24b-instruct-2501:fp8", "messages":[{"role": "user","content": "Tell me about Scaleway."}], "top_p": 1, "temperature": 0.7, "stream": false}' | ||
| ``` | ||
|
|
||
| Make sure to replace `<IAM API key>` and `<Deployment UUID>` with your actual [IAM API key](/iam/how-to/create-api-keys/) and the Deployment UUID you are targeting. | ||
|
|
||
| <Message type="note"> | ||
| Ensure that the `messages` array is properly formatted with roles (system, user, assistant) and content. | ||
| </Message> | ||
|
|
||
| ### Receiving Managed Inference responses | ||
|
|
||
| Upon sending the HTTP request to the public or private endpoints exposed by the server, you will receive inference responses from the managed Managed Inference server. | ||
| Process the output data according to your application's needs. The response will contain the output generated by the LLM model based on the input provided in the request. | ||
|
|
||
| <Message type="note"> | ||
| Despite efforts for accuracy, the possibility of generated text containing inaccuracies or [hallucinations](/managed-inference/concepts/#hallucinations) exists. Always verify the content generated independently. | ||
| </Message> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.