mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 10:59:30 -04:00
22 lines
341 B
C++
22 lines
341 B
C++
// Copyright (C) 2024-2026 Petr Mironychev
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace QodeAssist::PluginLLMCore {
|
|
|
|
enum class ProviderID {
|
|
Any,
|
|
Ollama,
|
|
LMStudio,
|
|
Claude,
|
|
OpenAI,
|
|
OpenAICompatible,
|
|
OpenAIResponses,
|
|
MistralAI,
|
|
OpenRouter,
|
|
GoogleAI,
|
|
LlamaCpp,
|
|
Qwen,
|
|
DeepSeek
|
|
};
|
|
}
|