Chat history WIP.

Reverted completion fuzzy search.
This commit is contained in:
Martín Lucas Golini
2025-03-23 03:37:34 -03:00
parent 12b2114a56
commit cfd66fa438
13 changed files with 366 additions and 23 deletions

View File

@@ -6,6 +6,8 @@
namespace ecode {
class LLMChatUI;
class AIAssistantPlugin : public PluginBase {
public:
static PluginDefinition Definition() {
@@ -34,6 +36,8 @@ class AIAssistantPlugin : public PluginBase {
std::string getConversationsPath() const;
LLMChatUI* newAIAssistant();
protected:
LLMProviders mProviders;
bool mUIInit{ false };
@@ -57,7 +61,6 @@ class AIAssistantPlugin : public PluginBase {
void initUI();
void newAIAssistant();
};
} // namespace ecode