| 1248 | } |
| 1249 | |
| 1250 | bool ChatRootView::isThinkingSupport() const |
| 1251 | { |
| 1252 | auto providerName = Settings::generalSettings().caProvider(); |
| 1253 | auto provider = PluginLLMCore::ProvidersManager::instance().getProviderByName(providerName); |
| 1254 | |
| 1255 | return provider && provider->capabilities().testFlag(PluginLLMCore::ProviderCapability::Thinking); |
| 1256 | } |
| 1257 | |
| 1258 | bool ChatRootView::hasImageAttachments(const QStringList &attachments) const |
| 1259 | { |
nothing calls this directly
no test coverage detected