From e503811ffd2b7114f495b8ff8e3e42a4b096663b Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 7 May 2025 19:56:57 +0200 Subject: [PATCH] Refine Capability enum to include single and multiple image input options, and differentiate reasoning types --- app/MindWork AI Studio/Provider/Capability.cs | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/app/MindWork AI Studio/Provider/Capability.cs b/app/MindWork AI Studio/Provider/Capability.cs index ea27f977..047ec67b 100644 --- a/app/MindWork AI Studio/Provider/Capability.cs +++ b/app/MindWork AI Studio/Provider/Capability.cs @@ -26,9 +26,14 @@ public enum Capability AUDIO_INPUT, /// - /// The AI model can perform image input, such as photos or drawings. + /// The AI model can perform one image input, such as one photo or drawing. /// - IMAGE_INPUT, + SINGLE_IMAGE_INPUT, + + /// + /// The AI model can perform multiple images as input, such as multiple photos or drawings. + /// + MULTIPLE_IMAGE_INPUT, /// /// The AI model can perform speech input. @@ -68,7 +73,12 @@ public enum Capability /// /// The AI model can perform reasoning tasks. /// - REASONING, + OPTIONAL_REASONING, + + /// + /// The AI model always performs reasoning. + /// + ALWAYS_REASONING, /// /// The AI model can embed information or data.