Skip to content

Commit 75f78ad

Browse files
committed
feature #1048 [Platform][Mistral] Add 14b latest model (welcoMattic)
This PR was merged into the main branch. Discussion ---------- [Platform][Mistral] Add 14b latest model | Q | A | ------------- | --- | Bug fix? | no | New feature? | yes <!-- please update src/**/CHANGELOG.md files --> | Docs? | no <!-- required for new features --> | Issues | <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT Add missing `ministral-14b-latest` model. NB: All new models (Mistral 3 series), are already supported as they are aliased with `-latest` suffix, which is what we have in Mistral `ModelCatalog` class. Commits ------- 7be3821 Add Ministral 14b latest model
2 parents 95751b8 + 7be3821 commit 75f78ad

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/platform/src/Bridge/Mistral/ModelCatalog.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,16 @@ public function __construct(array $additionalModels = [])
106106
Capability::TOOL_CALLING,
107107
],
108108
],
109+
'ministral-14b-latest' => [
110+
'class' => Mistral::class,
111+
'capabilities' => [
112+
Capability::INPUT_MESSAGES,
113+
Capability::OUTPUT_TEXT,
114+
Capability::OUTPUT_STREAMING,
115+
Capability::OUTPUT_STRUCTURED,
116+
Capability::TOOL_CALLING,
117+
],
118+
],
109119
'pixstral-large-latest' => [
110120
'class' => Mistral::class,
111121
'capabilities' => [

0 commit comments

Comments
 (0)