| 378 | } |
| 379 | |
| 380 | QString LLMClientInterface::resolveEndpoint( |
| 381 | PluginLLMCore::PromptTemplate *promptTemplate, bool isLanguageSpecify) const |
| 382 | { |
| 383 | const QString custom = isLanguageSpecify ? m_generalSettings.ccPreset1CustomEndpoint() |
| 384 | : m_generalSettings.ccCustomEndpoint(); |
| 385 | return !custom.isEmpty() ? custom : promptTemplate->endpoint(); |
| 386 | } |
| 387 | |
| 388 | Context::ContextManager *LLMClientInterface::contextManager() const |
| 389 | { |