refactor and prep rpbot

This commit is contained in:
2024-01-23 23:05:55 +01:00
parent c497b19b20
commit e504d7a8ef
10 changed files with 129 additions and 12 deletions

View File

@ -9,3 +9,12 @@ target_link_libraries(plugin_llama-cpp-web PUBLIC
solanaceae_llama-cpp-web
)
add_library(plugin_rpbot SHARED
./plugin_rpbot.cpp
)
target_link_libraries(plugin_rpbot PUBLIC
solanaceae_plugin
solanaceae_rpbot
)

View File

@ -36,7 +36,7 @@ SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api)
// register types
PLUG_PROVIDE_INSTANCE(LlamaCppWeb, plugin_name, g_lcw.get());
PLUG_PROVIDE_INSTANCE(LlamaCppWebI, plugin_name, g_lcw.get());
PLUG_PROVIDE_INSTANCE(TextCompletionI, plugin_name, g_lcw.get());
} catch (const ResolveException& e) {
std::cerr << "PLUGIN " << plugin_name << " " << e.what << "\n";
return 2;

61
plugins/plugin_rpbot.cpp Normal file
View File

@ -0,0 +1,61 @@
#include <solanaceae/plugin/solana_plugin_v1.h>
#include <solanaceae/util/config_model.hpp>
#include <solanaceae/llama-cpp-web/text_completion_interface.hpp>
#include <solanaceae/rpbot/rpbot.hpp>
#include <memory>
#include <iostream>
#include <limits>
static std::unique_ptr<RPBot> g_rpbot = nullptr;
constexpr const char* plugin_name = "RPBot";
extern "C" {
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void) {
return plugin_name;
}
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_get_version(void) {
return SOLANA_PLUGIN_VERSION;
}
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api) {
std::cout << "PLUGIN " << plugin_name << " START()\n";
if (solana_api == nullptr) {
return 1;
}
try {
auto* completion = PLUG_RESOLVE_INSTANCE(TextCompletionI);
auto* conf = PLUG_RESOLVE_INSTANCE(ConfigModelI);
// static store, could be anywhere tho
// construct with fetched dependencies
g_rpbot = std::make_unique<RPBot>(*completion, *conf);
// register types
PLUG_PROVIDE_INSTANCE(RPBot, plugin_name, g_rpbot.get());
} catch (const ResolveException& e) {
std::cerr << "PLUGIN " << plugin_name << " " << e.what << "\n";
return 2;
}
return 0;
}
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
std::cout << "PLUGIN " << plugin_name << " STOP()\n";
g_rpbot.reset();
}
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
return g_rpbot->tick(delta);
}
} // extern C