mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-08 21:40:21 +00:00
Fixed model capabilities
This commit is contained in:
parent
25c17bf2ad
commit
fe7304ae4a
@ -110,11 +110,15 @@ public sealed class ProviderPerplexity(ILogger logger) : BaseProvider("https://a
|
|||||||
{
|
{
|
||||||
var modelName = model.Id.ToLowerInvariant().AsSpan();
|
var modelName = model.Id.ToLowerInvariant().AsSpan();
|
||||||
|
|
||||||
if(modelName.IndexOf("reasoner") is not -1)
|
if(modelName.IndexOf("reasoning") is not -1 ||
|
||||||
|
modelName.IndexOf("deep-research") is not -1)
|
||||||
return
|
return
|
||||||
[
|
[
|
||||||
Capability.TEXT_INPUT,
|
Capability.TEXT_INPUT,
|
||||||
|
Capability.MULTIPLE_IMAGE_INPUT,
|
||||||
|
|
||||||
Capability.TEXT_OUTPUT,
|
Capability.TEXT_OUTPUT,
|
||||||
|
Capability.IMAGE_OUTPUT,
|
||||||
|
|
||||||
Capability.ALWAYS_REASONING,
|
Capability.ALWAYS_REASONING,
|
||||||
];
|
];
|
||||||
@ -122,7 +126,10 @@ public sealed class ProviderPerplexity(ILogger logger) : BaseProvider("https://a
|
|||||||
return
|
return
|
||||||
[
|
[
|
||||||
Capability.TEXT_INPUT,
|
Capability.TEXT_INPUT,
|
||||||
|
Capability.MULTIPLE_IMAGE_INPUT,
|
||||||
|
|
||||||
Capability.TEXT_OUTPUT,
|
Capability.TEXT_OUTPUT,
|
||||||
|
Capability.IMAGE_OUTPUT,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user