mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-06-04 01:28:58 -04:00
Add Llama chat support
This commit is contained in:
parent
95f29fefc7
commit
965af4a945
@ -94,6 +94,7 @@ public:
|
|||||||
templateManager.registerTemplate<Templates::DeepSeekCoderChat>();
|
templateManager.registerTemplate<Templates::DeepSeekCoderChat>();
|
||||||
templateManager.registerTemplate<Templates::CodeLlamaChat>();
|
templateManager.registerTemplate<Templates::CodeLlamaChat>();
|
||||||
templateManager.registerTemplate<Templates::QwenChat>();
|
templateManager.registerTemplate<Templates::QwenChat>();
|
||||||
|
templateManager.registerTemplate<Templates::LlamaChat>();
|
||||||
|
|
||||||
Utils::Icon QCODEASSIST_ICON(
|
Utils::Icon QCODEASSIST_ICON(
|
||||||
{{":/resources/images/qoderassist-icon.png", Utils::Theme::IconsBaseColor}});
|
{{":/resources/images/qoderassist-icon.png", Utils::Theme::IconsBaseColor}});
|
||||||
|
@ -46,4 +46,10 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class LlamaChat : public CodeLlamaChat
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
QString name() const override { return "Llama Chat"; }
|
||||||
|
};
|
||||||
|
|
||||||
} // namespace QodeAssist::Templates
|
} // namespace QodeAssist::Templates
|
||||||
|
Loading…
x
Reference in New Issue
Block a user