Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ Fully supported for conversational AI, content generation, and chat-based intera

**Available Models:**
- **GPT-OSS models**: Open-source GPT-compatible models
- **Qwen**: Qwen 3.5 122B-FP8 and Qwen 3.6 35B-FP8 (supports vision/image input)
- **Qwen**: Qwen 3.5 122B-FP8 and Qwen 3.6 35B-FP8 (supports vision/image input), Qwen3-VL-Reranker, Qwen3.6-0.8B
- **Ministral**: supports vision/image input
- **Devstral**: optimized for code generation
- **Mistral Medium 3.5**
- **GLM OCR**: `zai-org/GLM-OCR`

- **Capabilities:**
- Standard text chat
Expand Down
5 changes: 4 additions & 1 deletion includes/MittwaldModelMetadataDirectory.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,17 @@ static function ( array $modelData ) use (
switch ( $modelId ) {
case 'gpt-oss-120b':
case 'Qwen3-Coder-30B-Instruct':
case 'Devstral-Small-2-24B-Instruct-2512':
case 'Mistral-Medium-3.5':
Comment thread
LukasFritzeDev marked this conversation as resolved.
Outdated
Comment thread
LukasFritzeDev marked this conversation as resolved.
Outdated
case 'Qwen3.6-0.8B':
Comment thread
LukasFritzeDev marked this conversation as resolved.
Outdated
$modelCaps = $gptCapabilities;
$modelOptions = $gptOptions;
break;
case 'Mistral-Small-3.2-24B-Instruct':
case 'Ministral-3-14B-Instruct-2512':
case 'Qwen3.5-122B-A10B-FP8':
case 'Qwen3.6-35B-A3B-FP8':
case 'Qwen3-VL-Reranker':
Comment thread
LukasFritzeDev marked this conversation as resolved.
Outdated
case 'zai-org/GLM-OCR':
Comment thread
LukasFritzeDev marked this conversation as resolved.
Outdated
$modelCaps = $gptCapabilities;
$modelOptions = $gptMultimodalInputOptions;
break;
Expand Down
5 changes: 3 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ Fully supported for conversational AI, content generation, and chat-based intera

**Available Models:**
- **GPT-OSS models**: Open-source GPT-compatible models
- **Qwen**: Qwen 3.5 122B-FP8 and Qwen 3.6 35B-FP8 (supports vision/image input)
- **Qwen**: Qwen 3.5 122B-FP8 and Qwen 3.6 35B-FP8 (supports vision/image input), Qwen3-VL-Reranker, Qwen3.6-0.8B
- **Ministral**: supports vision/image input
- **Devstral**: optimized for code generation
- **Mistral Medium 3.5**
- **GLM OCR**: `zai-org/GLM-OCR`

**Capabilities:**
- Standard text chat
Expand Down