2023-12-06 15:12:34 +01:00
|
|
|
#include "./sd_bot.hpp"
|
|
|
|
|
2023-12-06 20:29:18 +01:00
|
|
|
#include <solanaceae/util/config_model.hpp>
|
|
|
|
|
2023-12-06 15:12:34 +01:00
|
|
|
#include <solanaceae/contact/components.hpp>
|
|
|
|
#include <solanaceae/message3/components.hpp>
|
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include <sodium.h>
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <fstream>
|
|
|
|
#include <filesystem>
|
2024-04-07 15:14:08 +02:00
|
|
|
|
2023-12-06 15:12:34 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2024-04-07 15:14:08 +02:00
|
|
|
struct Automatic1111_v1_Endpoint : public SDBot::EndpointI {
|
|
|
|
Automatic1111_v1_Endpoint(RegistryMessageModel& rmm, std::default_random_engine& rng) : SDBot::EndpointI(rmm, rng) {}
|
|
|
|
|
|
|
|
bool handleResponse(Contact3 contact, ByteSpan data) override {
|
|
|
|
//std::cout << std::string_view{reinterpret_cast<const char*>(data.ptr), data.size} << "\n";
|
|
|
|
|
|
|
|
// extract json result
|
|
|
|
const auto j = nlohmann::json::parse(
|
|
|
|
std::string_view{reinterpret_cast<const char*>(data.ptr), data.size},
|
|
|
|
nullptr,
|
|
|
|
false
|
|
|
|
);
|
|
|
|
//std::cout << "json dump: " << j.dump() << "\n";
|
|
|
|
|
|
|
|
if (j.count("images") && !j.at("images").empty() && j.at("images").is_array()) {
|
|
|
|
for (const auto& i_j : j.at("images").items()) {
|
|
|
|
// decode data (base64)
|
|
|
|
std::vector<uint8_t> png_data(data.size); // just init to upper bound
|
|
|
|
size_t decoded_size {0};
|
|
|
|
sodium_base642bin(
|
|
|
|
png_data.data(), png_data.size(),
|
|
|
|
i_j.value().get<std::string>().data(), i_j.value().get<std::string>().size(),
|
|
|
|
" \n\t",
|
|
|
|
&decoded_size,
|
|
|
|
nullptr,
|
|
|
|
sodium_base64_VARIANT_ORIGINAL
|
|
|
|
);
|
|
|
|
png_data.resize(decoded_size);
|
|
|
|
|
|
|
|
std::filesystem::create_directories("sdbot_img_send");
|
|
|
|
//const std::string tmp_img_file_name = "sdbot_img_" + std::to_string(_current_task.value()) + ".png";
|
|
|
|
const std::string tmp_img_file_name = "sdbot_img_" + std::to_string(_rng()) + ".png";
|
|
|
|
const std::string tmp_img_file_path = "sdbot_img_send/" + tmp_img_file_name;
|
|
|
|
|
|
|
|
std::ofstream(tmp_img_file_path).write(reinterpret_cast<const char*>(png_data.data()), png_data.size());
|
|
|
|
_rmm.sendFilePath(contact, tmp_img_file_name, tmp_img_file_path);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
std::cerr << "SDB json response did not contain images?\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SDcpp_wip1_Endpoint : public SDBot::EndpointI {
|
|
|
|
SDcpp_wip1_Endpoint(RegistryMessageModel& rmm, std::default_random_engine& rng) : SDBot::EndpointI(rmm, rng) {}
|
|
|
|
|
|
|
|
bool handleResponse(Contact3 contact, ByteSpan data) override {
|
|
|
|
//std::cout << std::string_view{reinterpret_cast<const char*>(data.ptr), data.size} << "\n";
|
|
|
|
|
|
|
|
std::string_view data_str {reinterpret_cast<const char*>(data.ptr), data.size};
|
|
|
|
auto nl_pos {std::string_view::npos};
|
|
|
|
bool succ {false};
|
|
|
|
do {
|
|
|
|
// for each line, should be "data: <json>" or empty
|
|
|
|
nl_pos = data_str.find_first_of('\n');
|
|
|
|
|
|
|
|
// npos is also valid
|
|
|
|
auto line = data_str.substr(0, nl_pos);
|
|
|
|
|
|
|
|
// at least minimum viable
|
|
|
|
if (line.size() >= std::string_view{"data: {}"}.size()) {
|
|
|
|
//std::cout << "got data line!!!!!!!!!!!:\n";
|
|
|
|
//std::cout << line << "\n";
|
|
|
|
line.remove_prefix(6);
|
|
|
|
|
|
|
|
const auto j = nlohmann::json::parse(
|
|
|
|
line,
|
|
|
|
nullptr,
|
|
|
|
false
|
|
|
|
);
|
|
|
|
|
|
|
|
if (
|
|
|
|
!j.empty() &&
|
|
|
|
j.value("type", "notimag") == "image" &&
|
|
|
|
j.contains("data") &&
|
|
|
|
j.at("data").is_string()
|
|
|
|
) {
|
|
|
|
const auto& img_data_str = j.at("data").get<std::string>();
|
|
|
|
// decode data (base64)
|
|
|
|
std::vector<uint8_t> png_data(img_data_str.size()); // just init to upper bound
|
|
|
|
size_t decoded_size {0};
|
|
|
|
sodium_base642bin(
|
|
|
|
png_data.data(), png_data.size(),
|
|
|
|
img_data_str.data(), img_data_str.size(),
|
|
|
|
" \n\t",
|
|
|
|
&decoded_size,
|
|
|
|
nullptr,
|
|
|
|
sodium_base64_VARIANT_ORIGINAL
|
|
|
|
);
|
|
|
|
png_data.resize(decoded_size);
|
|
|
|
|
|
|
|
std::filesystem::create_directories("sdbot_img_send");
|
|
|
|
//const std::string tmp_img_file_name = "sdbot_img_" + std::to_string(_current_task.value()) + ".png";
|
|
|
|
const std::string tmp_img_file_name = "sdbot_img_" + std::to_string(_rng()) + ".png";
|
|
|
|
const std::string tmp_img_file_path = "sdbot_img_send/" + tmp_img_file_name;
|
|
|
|
|
|
|
|
std::ofstream(tmp_img_file_path).write(reinterpret_cast<const char*>(png_data.data()), png_data.size());
|
|
|
|
succ = _rmm.sendFilePath(contact, tmp_img_file_name, tmp_img_file_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nl_pos == std::string_view::npos || nl_pos+1 >= data_str.size()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
data_str = data_str.substr(nl_pos+1);
|
|
|
|
} while (nl_pos != std::string_view::npos);
|
|
|
|
|
|
|
|
return succ;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-12-06 15:12:34 +01:00
|
|
|
SDBot::SDBot(
|
|
|
|
Contact3Registry& cr,
|
|
|
|
RegistryMessageModel& rmm,
|
|
|
|
ConfigModelI& conf
|
|
|
|
) : _cr(cr), _rmm(rmm), _conf(conf) {
|
2023-12-06 20:29:18 +01:00
|
|
|
_rng.seed(std::random_device{}());
|
|
|
|
_rng.discard(3137);
|
|
|
|
|
2024-04-07 15:14:08 +02:00
|
|
|
if (!_conf.has_string("SDBot", "endpoint_type")) {
|
|
|
|
_conf.set("SDBot", "endpoint_type", std::string_view{"automatic1111_v1"}); // automatic11 default
|
|
|
|
}
|
|
|
|
|
|
|
|
//HACKy
|
|
|
|
{ // construct endpoint
|
|
|
|
const std::string_view endpoint_type = _conf.get_string("SDBot", "endpoint_type").value();
|
|
|
|
if (endpoint_type == "automatic1111_v1") {
|
|
|
|
_endpoint = std::make_unique<Automatic1111_v1_Endpoint>(_rmm, _rng);
|
|
|
|
} else if (endpoint_type == "sdcpp_wip1") {
|
|
|
|
_endpoint = std::make_unique<SDcpp_wip1_Endpoint>(_rmm, _rng);
|
|
|
|
} else {
|
|
|
|
std::cerr << "SDB error: unknown endpoint type '" << endpoint_type << "'\n";
|
|
|
|
// TODO: throw?
|
|
|
|
_endpoint = std::make_unique<Automatic1111_v1_Endpoint>(_rmm, _rng);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: use defaults based on endpoint_type
|
|
|
|
|
2024-04-07 12:24:29 +02:00
|
|
|
if (!_conf.has_string("SDBot", "server_host")) {
|
|
|
|
_conf.set("SDBot", "server_host", std::string_view{"127.0.0.1"});
|
|
|
|
}
|
|
|
|
if (!_conf.has_int("SDBot", "server_port")) {
|
|
|
|
_conf.set("SDBot", "server_port", int64_t(7860)); // automatic11 default
|
|
|
|
}
|
|
|
|
if (!_conf.has_string("SDBot", "url_txt2img")) {
|
|
|
|
_conf.set("SDBot", "url_txt2img", std::string_view{"/sdapi/v1/txt2img"}); // automatic11 default
|
|
|
|
}
|
2023-12-06 20:29:18 +01:00
|
|
|
if (!_conf.has_int("SDBot", "width")) {
|
|
|
|
_conf.set("SDBot", "width", int64_t(512));
|
|
|
|
}
|
|
|
|
if (!_conf.has_int("SDBot", "height")) {
|
|
|
|
_conf.set("SDBot", "height", int64_t(512));
|
|
|
|
}
|
|
|
|
if (!_conf.has_int("SDBot", "steps")) {
|
|
|
|
_conf.set("SDBot", "steps", int64_t(20));
|
|
|
|
}
|
|
|
|
if (!_conf.has_double("SDBot", "cfg_scale")) {
|
|
|
|
_conf.set("SDBot", "cfg_scale", 6.5);
|
|
|
|
}
|
|
|
|
|
2023-12-06 15:12:34 +01:00
|
|
|
_rmm.subscribe(this, RegistryMessageModel_Event::message_construct);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDBot::~SDBot(void) {
|
|
|
|
}
|
|
|
|
|
2024-01-13 18:10:14 +01:00
|
|
|
float SDBot::iterate(void) {
|
2023-12-06 15:12:34 +01:00
|
|
|
if (static_cast<bool>(_con) && _con->outstanding()) {
|
|
|
|
_con->pump();
|
|
|
|
} else if (!_prompt_queue.empty()) { // dequeue new task
|
|
|
|
const auto& [task_id, prompt] = _prompt_queue.front();
|
|
|
|
|
|
|
|
_current_task = task_id;
|
|
|
|
|
|
|
|
// TODO: reuse connection?
|
2024-04-07 12:24:29 +02:00
|
|
|
const std::string server_host {_conf.get_string("SDBot", "server_host").value()};
|
|
|
|
_con = std::make_unique<happyhttp::Connection>(
|
|
|
|
server_host.c_str(),
|
|
|
|
_conf.get_int("SDBot", "server_port").value()
|
|
|
|
);
|
2023-12-06 15:12:34 +01:00
|
|
|
_con->setcallbacks(
|
|
|
|
+[](const happyhttp::Response* r, void* ud) { static_cast<SDBot*>(ud)->onHttpBegin(r); },
|
|
|
|
+[](const happyhttp::Response* r, void* ud, const uint8_t* data, int n) { static_cast<SDBot*>(ud)->onHttpData(r, data, n); },
|
|
|
|
+[](const happyhttp::Response* r, void* ud) { static_cast<SDBot*>(ud)->onHttpComplete(r); },
|
|
|
|
this
|
|
|
|
);
|
|
|
|
|
|
|
|
static const char* headers [] {
|
|
|
|
"accept: application/json",
|
|
|
|
"Content-Type: application/json",
|
|
|
|
nullptr,
|
|
|
|
};
|
|
|
|
|
|
|
|
nlohmann::json j_body;
|
2023-12-06 20:29:18 +01:00
|
|
|
j_body["width"] = _conf.get_int("SDBot", "width").value_or(512);
|
|
|
|
j_body["height"] = _conf.get_int("SDBot", "height").value_or(512);
|
2023-12-06 15:12:34 +01:00
|
|
|
|
2023-12-06 20:29:18 +01:00
|
|
|
//j_body["prompt"] = prompt;
|
|
|
|
//"<lora:lcm-lora-sdv1-5:1>"
|
|
|
|
j_body["prompt"] = std::string{_conf.get_string("SDBot", "prompt_prefix").value_or("")} + prompt;
|
|
|
|
// TODO: negative prompt
|
2023-12-06 15:12:34 +01:00
|
|
|
|
|
|
|
j_body["seed"] = -1;
|
2023-12-06 20:29:18 +01:00
|
|
|
#if 0
|
2023-12-06 15:12:34 +01:00
|
|
|
j_body["steps"] = 20;
|
|
|
|
//j_body["steps"] = 5;
|
|
|
|
j_body["cfg_scale"] = 6.5;
|
|
|
|
j_body["sampler_index"] = "Euler a";
|
2023-12-06 20:29:18 +01:00
|
|
|
#else
|
|
|
|
//j_body["steps"] = 4;
|
|
|
|
j_body["steps"] = _conf.get_int("SDBot", "steps").value_or(20);
|
|
|
|
//j_body["cfg_scale"] = 1;
|
|
|
|
j_body["cfg_scale"] = _conf.get_double("SDBot", "cfg_scale").value_or(6.5);
|
|
|
|
//j_body["sampler_index"] = "LCM Test";
|
|
|
|
j_body["sampler_index"] = std::string{_conf.get_string("SDBot", "sampler_index").value_or("Euler a")};
|
|
|
|
#endif
|
2023-12-06 15:12:34 +01:00
|
|
|
|
|
|
|
j_body["batch_size"] = 1;
|
|
|
|
j_body["n_iter"] = 1;
|
|
|
|
j_body["restore_faces"] = false;
|
|
|
|
j_body["tiling"] = false;
|
|
|
|
j_body["enable_hr"] = false;
|
|
|
|
|
|
|
|
std::string body = j_body.dump();
|
|
|
|
|
|
|
|
try {
|
2024-04-07 12:24:29 +02:00
|
|
|
const std::string url {_conf.get_string("SDBot", "url_txt2img").value()};
|
|
|
|
_con->request("POST", url.c_str(), headers, reinterpret_cast<const uint8_t*>(body.data()), body.size());
|
2023-12-06 15:12:34 +01:00
|
|
|
} catch (const happyhttp::Wobbly& e) {
|
|
|
|
std::cerr << "SDB http request error: " << e.what() << "\n";
|
|
|
|
// cleanup
|
|
|
|
_task_map.erase(_current_task.value());
|
|
|
|
_current_task = std::nullopt;
|
|
|
|
_con.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
_prompt_queue.pop();
|
|
|
|
}
|
2024-01-13 18:10:14 +01:00
|
|
|
|
|
|
|
// if active web connection, 5ms
|
|
|
|
return static_cast<bool>(_con) ? 0.005f : 1.f;
|
2023-12-06 15:12:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SDBot::onEvent(const Message::Events::MessageConstruct& e) {
|
|
|
|
if (!e.e.all_of<Message::Components::ContactTo, Message::Components::ContactFrom, Message::Components::MessageText, Message::Components::TagUnread>()) {
|
|
|
|
std::cout << "SDB: got message that is not";
|
|
|
|
|
|
|
|
if (!e.e.all_of<Message::Components::ContactTo>()) {
|
|
|
|
std::cout << " contact_to";
|
|
|
|
}
|
|
|
|
if (!e.e.all_of<Message::Components::ContactFrom>()) {
|
|
|
|
std::cout << " contact_from";
|
|
|
|
}
|
|
|
|
if (!e.e.all_of<Message::Components::MessageText>()) {
|
|
|
|
std::cout << " text";
|
|
|
|
}
|
|
|
|
if (!e.e.all_of<Message::Components::TagUnread>()) {
|
|
|
|
std::cout << " unread";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.e.any_of<Message::Components::TagMessageIsAction>()) {
|
|
|
|
std::cout << "SDB: got message that is";
|
|
|
|
if (e.e.all_of<Message::Components::TagMessageIsAction>()) {
|
|
|
|
std::cout << " action";
|
|
|
|
}
|
|
|
|
std::cout << "\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string_view message_text = e.e.get<Message::Components::MessageText>().text;
|
|
|
|
|
|
|
|
if (message_text.empty()) {
|
|
|
|
// empty message?
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto contact_to = e.e.get<Message::Components::ContactTo>().c;
|
|
|
|
const auto contact_from = e.e.get<Message::Components::ContactFrom>().c;
|
|
|
|
|
|
|
|
const bool is_private = _cr.any_of<Contact::Components::TagSelfWeak, Contact::Components::TagSelfStrong>(contact_to);
|
|
|
|
|
|
|
|
if (is_private) {
|
|
|
|
std::cout << "SDB private message " << message_text << " (l:" << message_text.size() << ")\n";
|
|
|
|
{ // queue task
|
|
|
|
const auto id = ++_last_task_counter;
|
|
|
|
_task_map[id] = contact_from; // reply privately
|
|
|
|
_prompt_queue.push(std::make_pair(uint64_t{id}, std::string{message_text}));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
assert(_cr.all_of<Contact::Components::Self>(contact_to));
|
|
|
|
const auto contact_self = _cr.get<Contact::Components::Self>(contact_to).self;
|
|
|
|
if (!_cr.all_of<Contact::Components::Name>(contact_self)) {
|
|
|
|
std::cerr << "SDB error: dont have self name\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const auto& self_name = _cr.get<Contact::Components::Name>(contact_self).name;
|
|
|
|
|
|
|
|
const auto self_prefix = self_name + ": ";
|
|
|
|
|
|
|
|
// check if for us. (starts with <botname>: )
|
|
|
|
if (message_text.substr(0, self_prefix.size()) == self_prefix) {
|
|
|
|
std::cout << "SDB public message " << message_text << " (l:" << message_text.size() << ")\n";
|
|
|
|
const auto id = ++_last_task_counter;
|
|
|
|
_task_map[id] = contact_to; // reply publicly
|
|
|
|
_prompt_queue.push(std::make_pair(uint64_t{id}, std::string{message_text.substr(self_prefix.size())}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: mark message read?
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDBot::onHttpBegin(const happyhttp::Response* r) {
|
|
|
|
std::cout << "SDB http begin " << r->getstatus() << " " << r->getreason() << "\n";
|
|
|
|
// TODO: handle errors
|
|
|
|
_con_data.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDBot::onHttpData(const happyhttp::Response* /*r*/, const unsigned char* data, int n) {
|
|
|
|
//std::cout << "SDB http data\n";
|
|
|
|
// TODO: handle errors
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
_con_data.push_back(data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDBot::onHttpComplete(const happyhttp::Response* r) {
|
|
|
|
std::cout << "SDB http complete " << r->getstatus() << " " << r->getreason() << "\n";
|
|
|
|
if (r->getstatus() == happyhttp::OK) {
|
|
|
|
std::cout << "SDB data\n";
|
|
|
|
|
2024-04-07 15:14:08 +02:00
|
|
|
const auto& contact = _task_map.at(_current_task.value());
|
|
|
|
if (_endpoint->handleResponse(contact, ByteSpan{_con_data})) {
|
|
|
|
// error?
|
2023-12-06 15:12:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_task_map.erase(_current_task.value());
|
|
|
|
_current_task = std::nullopt;
|
|
|
|
_con.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|