Instructional Writeup: How to Make LLMs Reason Deep and Build Entire Projects
Posted by No-Mulberry6961@reddit | LocalLLaMA | View on Reddit | 22 comments
I’ve been working on a way to push LLMs beyond their limits—deeper reasoning, bigger context, self-planning, and turning one request into a full project. I built project_builder.py (see a variant of it called the breakthrough generator: https://github.com/justinlietz93/breakthrough_generator I will make the project builder and all my other work open source, but not yet ), and it’s solved problems I didn’t think were possible with AI alone. Here’s how I did it and what I’ve made.
How I Did It
LLMs are boxed in by short memory and one-shot answers. I fixed that with a few steps:
Longer Memory: I save every output to a file. Next prompt, I summarize it and feed it back. Context grows as long as I need it. Deeper Reasoning: I make it break tasks into chunks—hypothesize, test, refine. Each step builds on the last, logged in files. Self-Planning: I tell it to write a plan, like “5 steps to finish this.” It updates the plan as we go, tracking itself. Big Projects from One Line: I start with “build X,” and it generates a structure—files, plans, code—expanding it piece by piece.
I’ve let this run for 6 hours before and it build me a full IDE from scratch to replace Cursor that I can put the generator in, and write code as well at the same time.
What I’ve Achieved
This setup’s produced things I never expected from single prompts:
A training platform for an AI architecture that’s not quite any ML domain but pulls from all of them. It works, and it’s new. Better project generators. This is version 3—each one builds the next, improving every time. Research 10x deeper than Open AI’s stuff. Full papers, no shortcuts. A memory system that acts human—keeps what matters, drops the rest, adapts over time. A custom Cursor IDE, built from scratch, just how I wanted it. All 100% AI, no human edits. One prompt each.
How It Works
The script runs the LLM in a loop. It saves outputs, plans next steps, and keeps context alive with summaries. Three monitors let me watch it unfold—prompts, memory, plan. Solutions to LLM limits are there; I just assembled them.
Why It Matters
Anything’s possible with this. Books, tools, research—it’s all in reach. The code’s straightforward; the results are huge. I’m already planning more.
__JockY__@reddit
Not sure why you're posting this now and publishing nothing, when you could publish something polished and real on your promised timeline of this weekend. Doesn't make sense. Have you seen the general reaction to vaporware around here?
No-Mulberry6961@reddit (OP)
I have no idea, I don’t browse reddit I am just trying to share something cool I made. I don’t care dude
__JockY__@reddit
Then actually share it! All we get was a “cool story, bro”.
Where can I see this thing you made and shared?
No-Mulberry6961@reddit (OP)
You probably missed it due to your crummy response, sorry. There’s some other cool stuff on my GitHub tho
__JockY__@reddit
What was that? It’s been 18 days. The statute of limitations for clever comebacks has long expired. Luckily you had a shitty comeback, so I’ll allow it.
No-Mulberry6961@reddit (OP)
You’ll be happy to know, I have a suite of AI critics that critique my work from many angles, and the Reddit troll persona is my favorite one
__JockY__@reddit
I didn’t see you work work, remember? You didn’t include it in your original post and I lost interest in you.
Like now. Bye.
Lissanro@reddit
I am working on something similar, but I am in the earlier stages of implementation and did not get to the stage where I could fully test it. If I get it to the point I consider it useful, I plan to share it as well.
However, at this point I already know it is possible. And I already seen many projects achieving great things, each in its own way addressing LLM limitations - many still in early stages though, so it is still early days.
It is amazing to see so much progress made, and I believe the more projects of this kind the better - we all can explore different approaches and learn from each other, and explore various ways. Also, sharing a project allows others to contribute to it and help to develop it faster.
No-Mulberry6961@reddit (OP)
I’m glad people are seeing the same vision, this is happening faster than people think! I saw someone today using a video of Alexa from 2017 as a reason why they’re skeptical of AGI 😂😂 so many people have their heads buried in the sand
laser_man6@reddit
How are we supposed to believe you made this if you can't even use proper spelling or grammar in your post about it?
No-Mulberry6961@reddit (OP)
Sorry, this isn’t intended for you
laser_man6@reddit
I think you should graduate high school before trying to do things like this, don't you have homework to do little man?
No-Mulberry6961@reddit (OP)
I’m planning to release a version of the project builder this weekend
Skodd@reddit
!remindme 72h
No_Afternoon_4260@reddit
!remindme 72h
Competitive_Ad_5515@reddit
!remindme 4 days
RemindMeBot@reddit
I will be messaging you in 3 days on 2025-03-18 04:16:02 UTC to remind you of this link
CLICK THIS LINK to send a PM to also be reminded and to reduce spam.
^(Parent commenter can ) ^(delete this message to hide from others.)
Foreign-Beginning-49@reddit
Sounds really cool, looking forward to it. So much of this tinkering is doing gods work. With gemma 3 release it says right in their blog they are excited for the community to discover and experiment with what the model is capable of. It made realize that I have come nowhere near enough tinkering to even understand the full capabilities of models released a year ago. Dinking around and figuring this stuff out is uncharted territory. This wasn't obvious to me when I first started learning and tinkering. Its made the process more engaging, mysterious, and rewarding. Undocumented intuitions are in each of us and the best thing we can do is share them with one another. ✌️
No-Mulberry6961@reddit (OP)
It’s amazing how far everyone is pushing this, I think we are living in an incredible time
segmond@reddit
Provide an example project this built from scratch with the input prompts & outputs. That will convince folks...
HNipps@reddit
Sounds intriguing.
johakine@reddit
I am doing stuff like this myself. Thank you for sharing, I will test it and go through your code. Will share my opinions also. Kudos!