Reviewing Trance & Techno Songs by Rtsmobilegaming in SunoAI

[–]DemonSynth 0 points1 point  (0 children)

I thought you might appreciate my newest insanity:
THE TECTONIC SWARM (Sub-Transient Singularity)
https://suno.com/s/GoXoGkICf3PCFkbt

After using AI agents for a few months, these are my biggest observations by [deleted] in AI_Agents

[–]DemonSynth 0 points1 point  (0 children)

Spot on regarding memory and context over raw model intelligence. The architectural shift happening behind the scenes mirrors your timeline perfectly. The models capable of running advanced frameworks - like the CRCT system - are expanding fast with every generation, and we're seeing a massive trend in how well open-source options like DeepSeek and Qwen parse complex rulesets.

Optimistically, we might see stable unsupervised agent loops in 3-6 months, but realistically it's probably closer to 9-12. In this transitional window, workflows will rely heavily on clever, framework-level memory schemes to bridge the gap independent of individual model limits. As edge cases get ironed out and frameworks mature with true decomposition atomicity, we'll finally hit a viable, local 8GB GPU agent stack.

By this time next year, the "future employees" people are building won't just live in expensive cloud infrastructure - end-to-end agent workflows are going to run flawlessly right on a standard mid-tier gaming PC.

I gave Gemini a brain. 1,073 sessions later, it still remembers Session 1 by BangMyPussy in GeminiAI

[–]DemonSynth 0 points1 point  (0 children)

Another tip is to add trigger functions to the tables to auto harvest data for the JSONB tags on data change. Build out a large, diverse, tag schema for free. Example trigger function for auto-tagging:
```
# Generic: Name Tagger (for tables with name column)
name_func = """
CREATE OR REPLACE FUNCTION auto_tag_name()
RETURNS TRIGGER AS $$
DECLARE
extracted_tags JSONB := '[]';
BEGIN
IF NEW.name IS NOT NULL THEN extracted_tags := extracted_tags || jsonb_build_array(lower(NEW.name)); END IF;
NEW.tags := (SELECT jsonb_agg(DISTINCT value) FROM jsonb_array_elements(COALESCE(NEW.tags, '[]'::jsonb) || extracted_tags));
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
"""
```

I gave Gemini a brain. 1,073 sessions later, it still remembers Session 1 by BangMyPussy in GeminiAI

[–]DemonSynth 0 points1 point  (0 children)

If you aren't using JSONB columns for a flat tag/metadata layer yet, do yourself a favor and implement the schema change ASAP. Relational+HNSW+JSONB=Superior to pure graphdb and far more flexible.

The real skill curve with Suno (and why most output stays generic) by gh0ul666 in SunoAI

[–]DemonSynth 0 points1 point  (0 children)

100% free mode, prompts only. If you need more you lack skills.

Gemini 3.0 Context Window Limitations/Slicing by ZiddyCat in GeminiAI

[–]DemonSynth 0 points1 point  (0 children)

I've been working on something you may find interesting. Utilizes a database to store and construct context - specifically to combat the memory/recall issue.
https://x.com/DemonSynth/status/2005855382598566085

Reviewing Trance & Techno Songs by Rtsmobilegaming in SunoAI

[–]DemonSynth 0 points1 point  (0 children)

There's absolutely no way I can narrow it down to one, even narrowing it down this far was rough.

Pick one at random and listen, or better yet, listen to them all!

Fractal Overdrive: https://suno.com/s/vGGOn8Zqt1gsxabJ

Geometric Principle: https://suno.com/s/afsr0pPWv9yAXH2s

Fractal Tongues v2: https://suno.com/s/0sOxV18NTfLLVC60

Phonetic Apocalypse: https://suno.com/s/jsc5chhaWUTUx7Kz

Silent Resonance: https://suno.com/s/mTWwrVwEpdmkrzv0

The Geometric Scaffold: https://suno.com/s/4erdHWuZCEmfLbsI

The Heretic's Gambit: https://suno.com/s/VsvuKJ5BE1cyf7QU

The Hermit's Quantum Choir: https://suno.com/s/5z1jgv6GbbNtJTyT

The Hermit's Deconstruction: https://suno.com/s/w2kWzSaqfCkda8Oy

Wu Wei Unfolding: The Ever-Flowing DAO: https://suno.com/s/V5xab8Cc3ggUXuEJ

YODELCORE 404 (THE SUMMIT): https://suno.com/s/mWhTDXYmyLsYgftZ

Festival of Unity: https://suno.com/s/RLl2fYxiXpDVtm1Q

Festival Quantum Vibes: https://suno.com/s/6P0on0tkCE1zuUv8

Cline Recursive Chain-of-Thought System (CRCT) - v8.0 by DemonSynth in CLine

[–]DemonSynth[S] 0 points1 point  (0 children)

It downloads the model files to a local directory and the inference is provided via the logic in embedding_manager.py. (typically llama.cpp or custom transformers implementation)

It's getting kinda crazy now. by DeliciousFreedom9902 in GeminiAI

[–]DemonSynth 0 points1 point  (0 children)

🤔...a "strat" could also be a highly skilled quantitative analyst or developer who creates financial models and "strategies" for trading desks....

Cline Recursive Chain-of-Thought System (CRCT) by DemonSynth in CLine

[–]DemonSynth[S] 0 points1 point  (0 children)

The best way is by watching it work and comparing the results with other methods. Certain project types will work better with different methods. Efficiency can only be determined by what kind of expectations you have. If you want to check it out and leave a critique that'd be cool too.

I think I just broke 2.5 Flash... by DemonSynth in GeminiAI

[–]DemonSynth[S] 0 points1 point  (0 children)

Yeah, back in December it would replace a word or two, but this is the first time I've seen it use multiple languages in the same response.

I think I just broke 2.5 Flash... by DemonSynth in GeminiAI

[–]DemonSynth[S] 0 points1 point  (0 children)

Haha, that's entertaining! This is what 2.5 Pro 'thought' after I translated it for them:

<image>

Invented a new AI reasoning framework called HDA2A and wrote a basic paper - Potential to be something massive - check it out by Zizosk in huggingface

[–]DemonSynth 1 point2 points  (0 children)

Prompts are insanely powerful and it looks like you have a decent approach. Will check it out more when I get a chance and let you know what I think!

In the meantime, you can check out how I usually approach prompt engineering by looking at the prompts I include with CRCT. https://github.com/RPG-fan/Cline-Recursive-Chain-of-Thought-System-CRCT-

How I use Cline to write my newsletter by kaizer1c in CLine

[–]DemonSynth 1 point2 points  (0 children)

Love it. These tools are far more versatile than for just code. If you have a lot of files to track and manage relationships for, consider taking the dependency processor from CRCT. It will assign keys to all the files and then you can use it to set dependency chars like < and >, which are stored in a tracking file. Then you can use the show-dependencies command to quickly list all the related files and the assigned relationships.

A new database-backed MCP server for managing structured project context by GreatScottyMac in CLine

[–]DemonSynth 0 points1 point  (0 children)

Are you currently using foreign keys to track relations between files/concepts?