File size: 20,982 Bytes
275585d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | // chatipc_modular.cpp
// Compile: g++ -std=c++17 -O2 -fopenmp -o chatipc_modular chatipc_modular.cpp
// Requires dictionary.cpp providing: extern unsigned char dictionary_json[]; extern unsigned int dictionary_json_len;
#include <algorithm>
#include <atomic>
#include <cctype>
#include <cinttypes>
#include <cstring>
#include <fstream>
#include <iostream>
#include <iterator>
#include <map>
#include <mutex>
#include <optional>
#include <sstream>
#include <stdexcept>
#include <string>
#include <thread>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#ifdef _OPENMP
#include <omp.h>
#else
inline int omp_get_max_threads(){ return 1; }
inline int omp_get_thread_num(){ return 0; }
#endif
extern unsigned char dictionary_json[]; // provide dictionary.cpp to embed dictionary JSON bytes
extern unsigned int dictionary_json_len;
// --------------------------- Short utility functions ----------------------
static inline bool is_space(char c){ return std::isspace(static_cast<unsigned char>(c)) != 0; }
static inline char to_low(char c){ return static_cast<char>(std::tolower(static_cast<unsigned char>(c))); }
static inline void safe_flush(std::ostream &os){ os.flush(); }
// Tokenize by whitespace
static std::vector<std::string> tokenize_whitespace(const std::string &s){
std::istringstream iss(s);
std::vector<std::string> out;
std::string t;
while (iss >> t) out.push_back(t);
return out;
}
// Tokenize by non-alphanumeric characters (for definitions)
static std::vector<std::string> tokenize_non_alnum(const std::string &s){
std::vector<std::string> out; std::string cur;
for (char ch : s){
if (std::isalnum(static_cast<unsigned char>(ch)) || ch=='-' || ch=='\''){
cur.push_back(to_low(ch));
} else {
if (!cur.empty()){ out.push_back(cur); cur.clear(); }
}
}
if (!cur.empty()) out.push_back(cur);
return out;
}
// --------------------------- String interning (short methods) --------------
struct StringInterner {
std::unordered_set<std::string> pool;
std::mutex m;
const std::string* intern(const std::string &s){
std::lock_guard<std::mutex> lk(m);
auto it = pool.find(s);
if (it != pool.end()) return &*it;
auto pr = pool.insert(s);
return &*pr.first;
}
};
// --------------------------- Knowledge base (short methods) --------------
using StrPtr = const std::string*;
struct PtrHash { size_t operator()(StrPtr p) const noexcept { return std::hash<std::string>()(*p); } };
struct PtrEq { bool operator()(StrPtr a, StrPtr b) const noexcept { return *a == *b; } };
using NextSet = std::vector<StrPtr>;
struct KnowledgeBase {
StringInterner interner;
std::unordered_map<StrPtr, NextSet, PtrHash, PtrEq> next;
std::mutex m;
void add_pair_interned(StrPtr k, StrPtr v){
std::lock_guard<std::mutex> lk(m);
auto &vec = next[k];
for (auto p : vec) if (*p == *v) return;
vec.push_back(v);
}
void add_pair(const std::string &k, const std::string &v){
StrPtr kp = interner.intern(k);
StrPtr vp = interner.intern(v);
add_pair_interned(kp, vp);
}
std::optional<NextSet> lookup_by_string(const std::string &k) const {
for (auto &pr : next) if (*pr.first == k) return pr.second;
return std::nullopt;
}
std::optional<NextSet> lookup_by_ptr(StrPtr k) const {
auto it = next.find(k);
if (it==next.end()) return std::nullopt;
return it->second;
}
};
// --------------------------- Small JSON parse helpers ----------------------
static inline bool json_valid_index(size_t i, size_t n){ return i < n; }
static std::string parse_quoted_string(const std::string &text, size_t &i){
std::string out;
if (!json_valid_index(i, text.size()) || text[i] != '"') throw std::runtime_error("expected '\"'");
++i;
while (json_valid_index(i, text.size())){
char c = text[i++];
if (c == '"') break;
if (c == '\\'){
if (!json_valid_index(i, text.size())) break;
char e = text[i++];
if (e=='n') out.push_back('\n');
else if (e=='t') out.push_back('\t');
else out.push_back(e);
} else out.push_back(c);
}
return out;
}
static void skip_spaces(const std::string &s, size_t &i){
while (json_valid_index(i, s.size()) && is_space(s[i])) ++i;
}
// Very small JSON-like parser tailored to dictionary_json structure
static std::unordered_map<std::string,std::string> parse_dictionary_json(){
std::unordered_map<std::string,std::string> dict;
if (dictionary_json_len == 0) return dict;
std::string text; text.reserve(dictionary_json_len + 1);
for (unsigned int b=0; b < dictionary_json_len; ++b) text.push_back(static_cast<char>(dictionary_json[b]));
size_t i = 0;
skip_spaces(text,i);
if (!json_valid_index(i,text.size()) || text[i] != '{') return dict;
++i;
while (true){
skip_spaces(text,i);
if (!json_valid_index(i,text.size())) break;
if (text[i] == '}'){ ++i; break; }
std::string key = parse_quoted_string(text,i);
skip_spaces(text,i);
if (!json_valid_index(i,text.size()) || text[i] != ':') break;
++i;
skip_spaces(text,i);
std::string val;
if (json_valid_index(i,text.size()) && text[i] == '"') val = parse_quoted_string(text,i);
else {
size_t start = i;
while (json_valid_index(i,text.size()) && text[i] != ',' && text[i] != '}') ++i;
val = text.substr(start, i-start);
}
dict.emplace(std::move(key), std::move(val));
skip_spaces(text,i);
if (json_valid_index(i,text.size()) && text[i] == ','){ ++i; continue; }
if (json_valid_index(i,text.size()) && text[i] == '}'){ ++i; break; }
}
return dict;
}
// --------------------------- Build definition index (small funcs) ---------
static std::unordered_set<std::string> def_tokens_from_text(const std::string &s){
auto toks = tokenize_non_alnum(s);
return std::unordered_set<std::string>(toks.begin(), toks.end());
}
static void expand_def_index(const std::unordered_map<std::string,std::unordered_set<std::string>> &direct,
std::unordered_map<std::string,std::unordered_set<std::string>> &out,
int depth)
{
for (auto &pr : direct){
const std::string &word = pr.first;
std::unordered_set<std::string> acc = pr.second;
if (depth > 1){
std::vector<std::string> frontier(acc.begin(), acc.end());
for (int d=1; d<depth; ++d){
std::vector<std::string> nextf;
for (auto &w : frontier){
auto it = direct.find(w);
if (it==direct.end()) continue;
for (auto &t : it->second){
if (acc.insert(t).second) nextf.push_back(t);
}
}
if (nextf.empty()) break;
frontier.swap(nextf);
}
}
out.emplace(word, std::move(acc));
}
}
static std::unordered_map<std::string,std::unordered_set<std::string>>
build_definition_index(int depth)
{
std::unordered_map<std::string,std::unordered_set<std::string>> out;
if (depth <= 0) return out;
auto raw = parse_dictionary_json();
std::unordered_map<std::string,std::unordered_set<std::string>> direct;
for (auto &pr : raw) direct.emplace(pr.first, def_tokens_from_text(pr.second));
expand_def_index(direct, out, depth);
return out;
}
// --------------------------- Similarity helpers (very small) ----------------
static double jaccard_similarity(const std::unordered_set<std::string> &A,
const std::unordered_set<std::string> &B)
{
if (A.empty() && B.empty()) return 1.0;
size_t inter = 0;
if (A.size() < B.size()){
for (const auto &x : A) if (B.count(x)) ++inter;
} else {
for (const auto &x : B) if (A.count(x)) ++inter;
}
size_t uni = A.size() + B.size() - inter;
if (uni == 0) return 0.0;
return static_cast<double>(inter) / static_cast<double>(uni);
}
static std::unordered_set<std::string>
aggregate_sets(const std::vector<std::string> &tokens,
const std::unordered_map<std::string,std::unordered_set<std::string>> &def_index)
{
std::unordered_set<std::string> agg;
for (auto &t : tokens){
agg.insert(t);
auto it = def_index.find(t);
if (it != def_index.end()){
for (auto &d : it->second) agg.insert(d);
}
}
return agg;
}
// --------------------------- Candidate selection (short funcs) ---------------
static std::string best_candidate_by_similarity(const NextSet &cands,
const std::vector<std::string> &prompt_toks,
const std::vector<std::string> &resp_toks,
const std::unordered_map<std::string,std::unordered_set<std::string>> &def_index,
const std::unordered_map<std::string,int> &recent_counts,
double repeat_penalty)
{
if (cands.empty()) return std::string();
if (cands.size() == 1) return *cands[0];
auto agg = aggregate_sets(prompt_toks, def_index);
for (auto &r : resp_toks){
auto it = def_index.find(r);
if (it != def_index.end()) for (auto &d : it->second) agg.insert(d);
}
double best = -1e9;
std::string best_tok;
size_t M = cands.size();
std::vector<double> scores(M, 0.0);
#pragma omp parallel for schedule(static)
for (ptrdiff_t i=0;i<static_cast<ptrdiff_t>(M);++i){
std::unordered_set<std::string> candset;
candset.insert(*cands[(size_t)i]);
auto it = def_index.find(*cands[(size_t)i]);
if (it != def_index.end()) for (auto &d : it->second) candset.insert(d);
double s = jaccard_similarity(agg, candset);
scores[(size_t)i] = s;
}
for (size_t i=0;i<M;++i){
const std::string &tok = *cands[i];
double s = scores[i];
auto rc_it = recent_counts.find(tok);
int cnt = (rc_it==recent_counts.end()? 0 : rc_it->second);
double adjusted = s - repeat_penalty * static_cast<double>(cnt);
if (adjusted > best || (adjusted == best && tok < best_tok)){
best = adjusted;
best_tok = tok;
}
}
return best_tok;
}
// --------------------------- Response generator (short units) ---------------
static std::vector<std::string> generate_response(KnowledgeBase &kb,
const std::vector<std::string> &prompt_toks,
size_t maxlen,
const std::unordered_map<std::string,std::unordered_set<std::string>> &def_index,
double repeat_penalty)
{
std::vector<std::string> resp;
if (prompt_toks.empty() || maxlen == 0) return resp;
std::unordered_map<std::string,int> recent_counts;
auto would_create_2_cycle = [&](const std::string &cand) -> bool {
if (resp.size() < 2) return false;
// check alternation: X Y X Y ... then candidate == X and last == Y
const std::string &last = resp.back();
const std::string &prev = resp[resp.size()-2];
return (cand == prev && last == resp[resp.size()-3 < resp.size() ? resp.size()-3 : 0]);
// this is a cheap conservative check; main guard is repeat_penalty + single-candidate rule
};
std::string last_printed;
for (size_t step=0; step<maxlen; ++step){
NextSet candidates;
bool found = false;
if (step==0){
for (ssize_t p = static_cast<ssize_t>(prompt_toks.size())-1; p>=0; --p){
auto opt = kb.lookup_by_string(prompt_toks[(size_t)p]);
if (opt){ candidates = *opt; found = true; break; }
}
} else {
auto opt = kb.lookup_by_string(last_printed);
if (opt){ candidates = *opt; found = true; }
else {
for (ssize_t p = static_cast<ssize_t>(prompt_toks.size())-1; p>=0; --p){
auto opt2 = kb.lookup_by_string(prompt_toks[(size_t)p]);
if (opt2){ candidates = *opt2; found = true; break; }
}
}
}
if (!found || candidates.empty()) break;
// If only one candidate and it already appeared, stop to avoid 1-cycle.
if (candidates.size()==1){
std::string only = *candidates[0];
if (recent_counts[only] > 0) break;
resp.push_back(only);
recent_counts[only] += 1;
last_printed = only;
continue;
}
// choose best with repeat penalty
std::string chosen = best_candidate_by_similarity(candidates, prompt_toks, resp, def_index, recent_counts, repeat_penalty);
if (chosen.empty()) break;
// cheap 2-cycle avoider: if this would continue a trivial alternation, stop
if (would_create_2_cycle(chosen)) break;
resp.push_back(chosen);
recent_counts[chosen] += 1;
last_printed = chosen;
}
return resp;
}
// --------------------------- Learning from files (short) -------------------
static void learn_from_file(KnowledgeBase &kb, const std::string &fname){
std::ifstream ifs(fname);
if (!ifs) return;
std::string tok;
std::string prev;
bool have_prev = false;
while (ifs >> tok){
if (have_prev) kb.add_pair(prev, tok);
prev = tok; have_prev = true;
}
}
static void learn_files_parallel(KnowledgeBase &kb, const std::vector<std::string> &files){
#pragma omp parallel for schedule(dynamic)
for (ptrdiff_t i=0;i<static_cast<ptrdiff_t>(files.size());++i) learn_from_file(kb, files[(size_t)i]);
}
// --------------------------- Serialization (short functions) ----------------
// File format documented in comments near functions
static void save_kb_binary(const KnowledgeBase &kb, const std::string &fname){
std::ofstream ofs(fname, std::ios::binary);
if (!ofs) throw std::runtime_error("cannot open save file");
std::vector<const std::string*> interned;
interned.reserve(kb.interner.pool.size());
for (auto &s : kb.interner.pool) interned.push_back(&s);
uint64_t N = interned.size();
ofs.write(reinterpret_cast<const char*>(&N), sizeof(N));
for (auto p : interned){
uint64_t L = p->size();
ofs.write(reinterpret_cast<const char*>(&L), sizeof(L));
ofs.write(p->data(), static_cast<std::streamsize>(L));
}
uint64_t E = kb.next.size();
ofs.write(reinterpret_cast<const char*>(&E), sizeof(E));
for (auto &pr : kb.next){
// find index of key
const std::string &key = *pr.first;
auto it = std::find_if(interned.begin(), interned.end(), [&](const std::string* s){ return *s == key; });
if (it == interned.end()) throw std::runtime_error("save index error");
uint64_t key_idx = static_cast<uint64_t>(std::distance(interned.begin(), it));
ofs.write(reinterpret_cast<const char*>(&key_idx), sizeof(key_idx));
uint64_t M = pr.second.size();
ofs.write(reinterpret_cast<const char*>(&M), sizeof(M));
for (auto nxt : pr.second){
auto it2 = std::find_if(interned.begin(), interned.end(), [&](const std::string* s){ return *s == *nxt; });
if (it2 == interned.end()) throw std::runtime_error("save index error2");
uint64_t v_idx = static_cast<uint64_t>(std::distance(interned.begin(), it2));
ofs.write(reinterpret_cast<const char*>(&v_idx), sizeof(v_idx));
}
}
safe_flush(ofs);
}
static void load_kb_binary(KnowledgeBase &kb, const std::string &fname){
std::ifstream ifs(fname, std::ios::binary);
if (!ifs) throw std::runtime_error("cannot open load file");
uint64_t N;
ifs.read(reinterpret_cast<char*>(&N), sizeof(N));
std::vector<std::string> strings; strings.reserve((size_t)N);
for (uint64_t i=0;i<N;++i){
uint64_t L; ifs.read(reinterpret_cast<char*>(&L), sizeof(L));
std::string s; s.resize((size_t)L);
ifs.read(&s[0], static_cast<std::streamsize>(L));
strings.push_back(std::move(s));
}
std::vector<StrPtr> ptrs; ptrs.reserve(strings.size());
for (auto &s : strings) ptrs.push_back(kb.interner.intern(s));
uint64_t E; ifs.read(reinterpret_cast<char*>(&E), sizeof(E));
for (uint64_t i=0;i<E;++i){
uint64_t key_idx; ifs.read(reinterpret_cast<char*>(&key_idx), sizeof(key_idx));
uint64_t M; ifs.read(reinterpret_cast<char*>(&M), sizeof(M));
StrPtr key_ptr = ptrs.at((size_t)key_idx);
NextSet vec; vec.reserve((size_t)M);
for (uint64_t j=0;j<M;++j){
uint64_t v_idx; ifs.read(reinterpret_cast<char*>(&v_idx), sizeof(v_idx));
vec.push_back(ptrs.at((size_t)v_idx));
}
kb.next.emplace(key_ptr, std::move(vec));
}
}
// --------------------------- CLI + Interactive loop (shorters) -----------
static void print_usage(const char *p){
std::cout << "Usage: " << p << " [--maxlen N] [--save FILE] [--load-kb FILE] [--dict-depth D] [--learn f1 f2 ...]\n";
}
int main(int argc, char **argv){
size_t maxlen = 100;
std::string savefile;
std::string load_txt;
std::string load_kb;
int dict_depth = 2;
double repeat_penalty = 0.7; // default λ
std::vector<std::string> learn_files;
for (int i=1;i<argc;++i){
std::string a = argv[i];
if (a=="--help"){ print_usage(argv[0]); return 0; }
if (a=="--maxlen" && i+1<argc){ maxlen = std::stoul(argv[++i]); continue; }
if (a=="--save" && i+1<argc){ savefile = argv[++i]; continue; }
if (a=="--load-kb" && i+1<argc){ load_kb = argv[++i]; continue; }
if (a=="--dict-depth" && i+1<argc){ dict_depth = std::stoi(argv[++i]); continue; }
if (a=="--repeat-penalty" && i+1<argc){ repeat_penalty = std::stod(argv[++i]); continue; }
if (a=="--learn"){
++i;
for (; i<argc; ++i){
if (!argv[i]) break;
std::string s = argv[i];
if (!s.empty() && s[0]=='-'){ --i; break; }
learn_files.push_back(s);
}
continue;
}
learn_files.push_back(a);
}
KnowledgeBase kb;
if (!load_kb.empty()){
try { load_kb_binary(kb, load_kb); std::cerr << "Loaded KB: " << load_kb << "\n"; }
catch (const std::exception &e){ std::cerr << "Load KB error: " << e.what() << "\n"; }
}
if (!learn_files.empty()){
std::cerr << "Learning from file/s (" << learn_files.size() << ") using threads=" << omp_get_max_threads() << "\n";
learn_files_parallel(kb, learn_files);
}
auto def_index = build_definition_index(dict_depth);
if (!def_index.empty()) std::cerr << "Dictionary depth " << dict_depth << " loaded (" << def_index.size() << " words)\n";
std::string line;
std::cout << "Ready. Enter prompts.\n";
while (std::cout << "> " , std::getline(std::cin, line)){
if (line.empty()){ std::cout << "\n"; continue; }
auto prompt_toks = tokenize_whitespace(line);
for (size_t i=1;i<prompt_toks.size();++i) kb.add_pair(prompt_toks[i-1], prompt_toks[i]);
auto resp = generate_response(kb, prompt_toks, maxlen, def_index, repeat_penalty);
for (size_t i=0;i<resp.size();++i){ std::cout << resp[i]; if (i+1<resp.size()) std::cout << ' '; }
std::cout << "\n";
if (!resp.empty()){
std::vector<std::string> combined = prompt_toks;
combined.insert(combined.end(), resp.begin(), resp.end());
for (size_t i=1;i<combined.size();++i) kb.add_pair(combined[i-1], combined[i]);
}
if (!savefile.empty()){
try { save_kb_binary(kb, savefile); std::cerr << "Saved KB: " << savefile << "\n"; }
catch (const std::exception &e){ std::cerr << "Save KB error: " << e.what() << "\n"; }
}
}
if (!savefile.empty()){
try { save_kb_binary(kb, savefile); std::cerr << "Saved KB: " << savefile << "\n"; }
catch (const std::exception &e){ std::cerr << "Save KB error: " << e.what() << "\n"; }
}
return 0;
}
|