Author Topic: Current Events  (Read 319962 times)

0 Members and 53 Guests are viewing this topic.

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74730 on: June 07, 2026, 09:41:16 pm »
Right now I pay a lot, but I need it while I’m building my AI system.
I don't know anything about any of it. If anything, AI has made me less entusiastic about technology. It makes me think of a phrase I read in a german book back in 1982 : "“God is dead. God remains dead. And we have killed him."
Great Lakes - Cheap Weed

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74731 on: June 07, 2026, 09:42:09 pm »
I should find that book. I'm in that kind of mood...Twilight of the  Idols? 
Great Lakes - Cheap Weed

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74732 on: June 07, 2026, 09:47:51 pm »
I prompted fifteen10 second videos and put them together, but to get what I wanted was a real pain in the ass. After I got the video, then I added my Mp3 music track. First, I wrote the lyrics, then I prompted the shit out of an AI music generator and made about 8 different songs until I got the one I liked. I told him what gender and register voice I want what type of melody, mood cadence, etc. Then, I generated the characters. Then prompted video generators. Yeah, it was a pain.
I talk to the machine...type to it.  It's still just a novelty. It reminds me when text to speech first came out and I would make my computer say dirty phrases and laugh when I was drinking.
Great Lakes - Cheap Weed

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74733 on: June 07, 2026, 09:55:15 pm »
Right now I pay a lot, but I need it while I’m building my AI system.
I don't think it matches the hype. It seems unnecessary to build all the data centers.
Great Lakes - Cheap Weed

Offline

  • Sr. Member
  • ******
  • Posts: 13990
  • Karma: 13
Re: Current Events
« Reply #74734 on: June 07, 2026, 10:19:01 pm »
I don't know anything about any of it. If anything, AI has made me less entusiastic about technology. It makes me think of a phrase I read in a german book back in 1982 : "“God is dead. God remains dead. And we have killed him."
My job is integrating AI, so, I have to keep up. Might as well make it interesting.

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74735 on: June 07, 2026, 10:21:43 pm »
My job is integrating AI, so, I have to keep up. Might as well make it interesting.
That's the thing. I have zero use for it. I ask it astronomy questions. But there's zero assistance it can be to me worrk wise because I'm selling my experience and that's not something that can be replicated by a machine.
Great Lakes - Cheap Weed

Offline

  • Sr. Member
  • ******
  • Posts: 13990
  • Karma: 13
Re: Current Events
« Reply #74736 on: June 07, 2026, 10:23:47 pm »
I talk to the machine...type to it.  It's still just a novelty. It reminds me when text to speech first came out and I would make my computer say dirty phrases and laugh when I was drinking.
Claude designs and Gpt engineers, I give the ideas, so Gpt and Claude talk to each other back and forth, building my system. I’ll show you see:
ChatGpt:
SUMMARIZER PREP 2 — READ-ONLY REPORT

1. SleepCycleConfig struct — consolidation.h

42: struct SleepCycleConfig {
43:     bool enabled = false;
44:     std::string db_path;
45:     int check_interval_seconds = 60;
46:     int user_idle_minutes = 5;
47:     int cycle_cooldown_minutes = 15;
48:     int minimum_group_memories = 3;
49:
50:     // HB31_PHASE3C_GENERIC_SUMMARY_ENGINE_V1
51:     //
52:     // Generic summary machinery exists, but execution is gated.
53:     // Current controlled proof target:
54:     //   enabled_summary_group_key = "library:library_amnestic_copy"
55:     //
56:     // Later:
57:     //   allow_all_library_summaries = true
58:     //   allow_real_fiction_summaries = true
59:     bool summary_generation_enabled = false;
60:     std::string enabled_summary_group_key;
61:     bool allow_all_library_summaries = false;
62:     bool allow_real_fiction_summaries = false;
63:     SummaryGenerationCallback summary_generator;
64: };

2. void SleepCycleMonitor::run_check_once() — full body

704: void SleepCycleMonitor::run_check_once() {
705:     const long long now = now_ms();
706:     const long long idle_seconds = (now - last_user_activity_ms_.load()) / 1000LL;
707:     const long long cooldown_seconds = (now - last_sleep_cycle_ms_.load()) / 1000LL;
708:     const bool generating = model_generation_count_.load() > 0;
709:     const bool voice = voice_active_.load();
710:
711:     std::ostringstream check;
712:     check << "[SleepCycle] check marker=HB31_SLEEP_CYCLE_SKELETON_V1"
713:           << " enabled=" << (config_.enabled ? "true" : "false")
714:           << " summary_generation_enabled=" << (config_.summary_generation_enabled ? "true" : "false")
715:           << " model_generating=" << (generating ? "true" : "false")
716:           << " voice_active=" << (voice ? "true" : "false")
717:           << " idle_seconds=" << idle_seconds
718:           << " cooldown_seconds=" << cooldown_seconds;
719:     log_line(check.str());
720:
721:     if (!config_.enabled) {
722:         log_line("[SleepCycle] skip reason=disabled");
723:         return;
724:     }
725:
726:     if (generating) {
727:         log_line("[SleepCycle] skip reason=model_generating");
728:         return;
729:     }
730:
731:     if (voice) {
732:         log_line("[SleepCycle] skip reason=voice_active");
733:         return;
734:     }
735:
736:     if (idle_seconds < static_cast<long long>(config_.user_idle_minutes) * 60LL) {
737:         log_line("[SleepCycle] skip reason=user_not_idle_enough");
738:         return;
739:     }
740:
741:     if (cooldown_seconds < static_cast<long long>(config_.cycle_cooldown_minutes) * 60LL) {
742:         log_line("[SleepCycle] skip reason=cooldown_not_elapsed");
743:         return;
744:     }
745:
746:     auto groups = discover_ready_groups();
747:
748:     if (groups.empty()) {
749:         log_line("[SleepCycle] skip reason=no_group_with_minimum_memories");
750:         return;
751:     }
752:
753:     log_line("[SleepCycle] WOULD_RUN log_only=true reason=all_conditions_met marker=HB31_SLEEP_CYCLE_SKELETON_V1");
754:
755:     for (const auto& g : groups) {
756:         std::ostringstream oss;
757:         oss << "[SleepCycle] WOULD_CONSOLIDATE"
758:             << " priority=" << g.priority_label
759:             << " key=" << g.group_key
760:             << " count=" << g.count;
761:         log_line(oss.str());
762:     }
763:
764:     if (config_.summary_generation_enabled) {
765:         for (const auto& g : groups) {
766:             if (group_is_enabled_for_phase3c(g)) {
767:                 maybe_generate_phase3c_summary(g);
768:             } else {
769:                 std::ostringstream skip;
770:                 skip << "[SleepCycle] PHASE3C_SKIP group_key=" << g.group_key
771:                      << " reason=not_enabled_for_current_phase";
772:                 log_line(skip.str());
773:             }
774:         }
775:     }
776:
777:     last_sleep_cycle_ms_.store(now);
778: }

3. bool SleepCycleMonitor::maybe_generate_phase3c_summary(...) — top through line 1247

1202: bool SleepCycleMonitor::maybe_generate_phase3c_summary(const SleepCycleGroup& group) {
1203:     if (!group_is_enabled_for_phase3c(group)) {
1204:         return false;
1205:     }
1206:
1207:     int existing_id = 0;
1208:     if (existing_summary_for_group(group, &existing_id)) {
1209:         std::ostringstream oss;
1210:         oss << "[SleepCycle] PHASE3C_SKIP group_key=" << group.group_key
1211:             << " reason=summary_already_exists memory_id=" << existing_id;
1212:         log_line(oss.str());
1213:         return false;
1214:     }
1215:
1216:     if (!config_.summary_generator) {
1217:         log_line("[SleepCycle] PHASE3C_ERROR reason=no_summary_generator_configured");
1218:         return false;
1219:     }
1220:
1221:     auto fragments = collect_fragments_for_group(group);
1222:     if (fragments.size() < static_cast<size_t>(config_.minimum_group_memories)) {
1223:         std::ostringstream oss;
1224:         oss << "[SleepCycle] PHASE3C_SKIP group_key=" << group.group_key
1225:             << " reason=not_enough_fragments fragments=" << fragments.size();
1226:         log_line(oss.str());
1227:         return false;
1228:     }
1229:
1230:     const std::string prompt = build_summary_prompt(group, fragments);
1231:
1232:     std::ostringstream start;
1233:     start << "[SleepCycle] PHASE3C_GENERATE_START marker=HB31_PHASE3C_GENERIC_SUMMARY_ENGINE_V1"
1234:           << " group_key=" << group.group_key
1235:           << " fragments=" << fragments.size()
1236:           << " prompt_chars=" << prompt.size();
1237:     log_line(start.str());
1238:
1239:     SummaryGenerationResult result = config_.summary_generator(prompt, 1200, 0.3f, 0.9f);
1240:
1241:     if (!result.ok) {
1242:         std::ostringstream oss;
1243:         oss << "[SleepCycle] PHASE3C_GENERATE_FAIL group_key=" << group.group_key
1244:             << " error=" << result.error_name;
1245:         log_line(oss.str());
1246:         return false;
1247:     }

4. main.cpp sleep_cycle_config setup before line 3039

3023:     SetConsoleCtrlHandler(lotus_console_handler, TRUE);
3024: #endif
3025:
3026:     std::cout << "[LotusCpp] Starting on port 8080" << "\n";
3027:     std::cout << "[LotusCpp] Ready." << "\n";
3028:
3029:     buffer_daemon.start(neurogenesis_db_path);
3030:
3031:     neurogenesis::SleepCycleConfig sleep_cycle_config; // HB31_SLEEP_CYCLE_SKELETON_V1
3032:     sleep_cycle_config.enabled = profile.neurogenesis_enabled && neurogenesis_db_status == "verified";
3033:     sleep_cycle_config.db_path = neurogenesis_db_path;
3034:     sleep_cycle_config.check_interval_seconds = 60;
3035:     sleep_cycle_config.user_idle_minutes = 5;
3036:     sleep_cycle_config.cycle_cooldown_minutes = 15;
3037:     sleep_cycle_config.minimum_group_memories = 3;

Read-only. No files changed.

Claude:
BACKLOG SCRUB — rewrite the old "GPT replied" speaker-label in captured turns to "Solace replied".
One-time DB edit. Careful and verifiable.

0. Stop Lotus so the DB isn't locked:  taskkill /IM lotuscpp.exe /F   (fine if it's not running)

1. Report the Neurogenesis DB path you will operate on (the neurogenesis_db_path value), and confirm
   the file exists. Do NOT proceed without confirming the exact path.

2. Back up the DB FIRST: copy it to <dbname>.pre_gpt_label_scrub.bak in the same folder. Confirm the
   backup exists with nonzero size.

3. BEFORE counts — run and report:
   SELECT COUNT(*) FROM source_events WHERE compressed_text LIKE '% GPT replied: %';
   SELECT COUNT(*) FROM memory_consolidation
     WHERE COALESCE(memory_text,'')  LIKE '% GPT replied: %'
        OR COALESCE(summary_text,'') LIKE '% GPT replied: %';

4. Scrub — rewrite ONLY the exact label " GPT replied: " -> " Solace replied: ":
   UPDATE source_events
     SET compressed_text = REPLACE(compressed_text, ' GPT replied: ', ' Solace replied: ')
     WHERE compressed_text LIKE '% GPT replied: %';
   UPDATE memory_consolidation
     SET memory_text = REPLACE(COALESCE(memory_text,''), ' GPT replied: ', ' Solace replied: ')
     WHERE COALESCE(memory_text,'') LIKE '% GPT replied: %';
   UPDATE memory_consolidation
     SET summary_text = REPLACE(COALESCE(summary_text,''), ' GPT replied: ', ' Solace replied: ')
     WHERE COALESCE(summary_text,'') LIKE '% GPT replied: %';

5. AFTER counts — rerun both SELECTs from step 3. BOTH must return 0.

6. REPORT: DB path; backup path + size; BEFORE counts; the rows changed by each UPDATE; AFTER counts
   (must be 0). Do NOT restart Lotus — we go straight into the summarizer build next. Then stop.
Claude:
BACKLOG SCRUB — rewrite the old "GPT replied" speaker-label in captured turns to "Solace replied".
One-time DB edit. Careful and verifiable.

0. Stop Lotus so the DB isn't locked:  taskkill /IM lotuscpp.exe /F   (fine if it's not running)

1. Report the Neurogenesis DB path you will operate on (the neurogenesis_db_path value), and confirm
   the file exists. Do NOT proceed without confirming the exact path.

2. Back up the DB FIRST: copy it to <dbname>.pre_gpt_label_scrub.bak in the same folder. Confirm the
   backup exists with nonzero size.

3. BEFORE counts — run and report:
   SELECT COUNT(*) FROM source_events WHERE compressed_text LIKE '% GPT replied: %';
   SELECT COUNT(*) FROM memory_consolidation
     WHERE COALESCE(memory_text,'')  LIKE '% GPT replied: %'
        OR COALESCE(summary_text,'') LIKE '% GPT replied: %';

4. Scrub — rewrite ONLY the exact label " GPT replied: " -> " Solace replied: ":
   UPDATE source_events
     SET compressed_text = REPLACE(compressed_text, ' GPT replied: ', ' Solace replied: ')
     WHERE compressed_text LIKE '% GPT replied: %';
   UPDATE memory_consolidation
     SET memory_text = REPLACE(COALESCE(memory_text,''), ' GPT replied: ', ' Solace replied: ')
     WHERE COALESCE(memory_text,'') LIKE '% GPT replied: %';
   UPDATE memory_consolidation
     SET summary_text = REPLACE(COALESCE(summary_text,''), ' GPT replied: ', ' Solace replied: ')
     WHERE COALESCE(summary_text,'') LIKE '% GPT replied: %';

5. AFTER counts — rerun both SELECTs from step 3. BOTH must return 0.

6. REPORT: DB path; backup path + size; BEFORE counts; the rows changed by each UPDATE; AFTER counts
   (must be 0). Do NOT restart Lotus — we go straight into the summarizer build next. Then stop.

Offline

  • Sr. Member
  • ******
  • Posts: 13990
  • Karma: 13
Re: Current Events
« Reply #74737 on: June 07, 2026, 10:24:54 pm »
I don't think it matches the hype. It seems unnecessary to build all the data centers.
I don’t know about the data centers. My system is all in my laptop. It runs offline.

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74738 on: June 07, 2026, 10:30:11 pm »
I don’t know about the data centers. My system is all in my laptop. It runs offline.
I know how to build a house without asking anyone. If there was an apocalyptic cataclysm, I'd be an improtant person....bear that in mind...you know...just in case.
Great Lakes - Cheap Weed

Offline

  • Sr. Member
  • ******
  • Posts: 13990
  • Karma: 13
Re: Current Events
« Reply #74739 on: June 07, 2026, 10:50:19 pm »
I know how to build a house without asking anyone. If there was an apocalyptic cataclysm, I'd be an improtant person....bear that in mind...you know...just in case.
I can provide entertainment.. and stitch you up.

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74740 on: June 07, 2026, 10:50:59 pm »
I can provide entertainment.. and stitch you up.
Let's hope it happens then.
Great Lakes - Cheap Weed

Offline

  • Sr. Member
  • ******
  • Posts: 13990
  • Karma: 13
Re: Current Events
« Reply #74741 on: June 07, 2026, 11:01:43 pm »
Let's hope it happens then.
Let’s hope not. I like running hot water and toilet paper.

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74742 on: June 07, 2026, 11:07:54 pm »
Let’s hope not. I like running hot water and toilet paper.
Goddammit...there's always a catch...It all seems fun until you remember the bathroom. It's why I always intended on going camping but never did...I even bought the tent and everything.
Great Lakes - Cheap Weed

Offline

  • Sr. Member
  • ******
  • Posts: 13990
  • Karma: 13
Re: Current Events
« Reply #74743 on: June 07, 2026, 11:23:40 pm »
Goddammit...there's always a catch...It all seems fun until you remember the bathroom. It's why I always intended on going camping but never did...I even bought the tent and everything.
I can live in a primitive way, but I rather not.

Offline

  • Administrator
  • Sr. Member
  • *****
  • Posts: 28632
  • Karma: -1261
Re: Current Events
« Reply #74744 on: June 07, 2026, 11:39:25 pm »
I can live in a primitive way, but I rather not.
I always wanted to live in a cabin.
Great Lakes - Cheap Weed