mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-21 02:52:56 +00:00
Refine Capability enum to include single and multiple image input options, and differentiate reasoning types
This commit is contained in:
parent
12bb0a64ef
commit
e503811ffd
@ -26,9 +26,14 @@ public enum Capability
|
|||||||
AUDIO_INPUT,
|
AUDIO_INPUT,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 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.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
IMAGE_INPUT,
|
SINGLE_IMAGE_INPUT,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The AI model can perform multiple images as input, such as multiple photos or drawings.
|
||||||
|
/// </summary>
|
||||||
|
MULTIPLE_IMAGE_INPUT,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The AI model can perform speech input.
|
/// The AI model can perform speech input.
|
||||||
@ -68,7 +73,12 @@ public enum Capability
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The AI model can perform reasoning tasks.
|
/// The AI model can perform reasoning tasks.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
REASONING,
|
OPTIONAL_REASONING,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The AI model always performs reasoning.
|
||||||
|
/// </summary>
|
||||||
|
ALWAYS_REASONING,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The AI model can embed information or data.
|
/// The AI model can embed information or data.
|
||||||
|
Loading…
Reference in New Issue
Block a user