Am using Github Pro+ ($39/month) but theyāre switching from āPremium Requestā to a token based model june 1st. So, inference is going to get a lot more expensive for prompts that trigger long running work. Maybe my math is off, but with their new billing model the FluidTouch port Iāve been tinkering with would cost $1000+ instead of ~$30 last month (ignoring my timeā¦).
About a week ago I built a dashboard (https://github.com/vector76/cc_usage_dashboard) to track my Claude Max (20x) usage against my allowance, and according to that, I burned about $500 in VC money (most, but not all of that was spent on the sand simulator). The $200 per month subscription gets you what would be approximately $2000 in credits if you were paying retail API rates.
I have a hard time using all my allowance so I use Opus 4.7 1M context for everything.
And yes Iām using raymond to keep the machine fed. Bit by bit, building on it. Trying to get to the point where it can stand alone instead of needing other supporting tools to be convenient. Raymond is a nice engine but itās not a nice car at the moment.
By the way the green zones on the charts trigger a āslackā mode so if I am under-spending my quota, it could trigger low-priority or low-value tasks to use up the extra allowance before it expires. It works but I havenāt used it yet.
Iāve been warning people for months that eventually this day would come, and companies would have to start charging the true cost⦠and itās not cheap.
Iāve been playing with it a bit to see where weāll land.
Iāve had a single Opus request, 3 Premium request units, burn through 60 million tokens.
Something I could do on the old plan 330 times per month for $40, would now be $300 minimum, if we assume all those tokens were input tokens, and nothing was cached.
A day of reckoning is coming soon
The copilot team is really gonna have to start laying off the features and start focusing more on getting those token counts optimized.
There needs to be a lot more transparency and control for what affects these things
I spent last few hours of Aprilās billing cycle trying to use before losing unused Requests on lower pri projects. Spinning up 6 agents to use Opus 4.7 for backlogged projects quickly hit session limits. So, I ended up not fully utilizing monthly credits. Your idea to continually enqueue lower pri work throughout the month is great. Cheers for sharing!
Yes! Especially for all the lessons and mistakes, best to do that when it is cheap! The products (like sand sim) are cool but secondary, and Iām mostly after the experience.
Anyone using these workflows would be very wise to model and predict what the (not free) costs will be when the providers try to charge appropriately to their own expenses.
My work teams have started to look at this, itās startling.
I can say this is the coolest, most accurate sand simulator Iāve seen.
It seems to be running in real time. I wonder how fast it can run if it just tries to show the final result?
I havenāt played with it too much. I want to try it with some of the rmrrf patterns we had and compare to the real thing. But it certainly looks a lot more accurate than the lines in sandify.
A speed multiplier and pause and scrub was in the original roadmap I think but that part is not implemented yet. I havenāt tried optimizing speed vs fidelity and I donāt even know if feedrates in the gcode are respected. I havenāt tried it.
I havenāt tried but a few patterns but one thing I did notice is the āsquareā pattern followed by the spiral pattern basically erases the square, but there is a subtle shadow of where the square had been, similar to how wipes leave a barely perceptible shadow of the previous image. This blew me away when I first saw it.
Yeah. Thatās great. I havenāt read the code. Do you know what it is drawing and what it is basically doing to simulate that? Is it doing actual particle physics or some approximation?
It is not simulating individual grains. What I asked for was a radial displacement model with repose relaxation afterward. The ball is segmented into 32 pie slices and for each slice, at each timestep, it computes the displaced volume which is the sand surface above the lower surface of the ball. It then distributes that sand radially outward, filling closer cells first and continuing outward until all the displaced sand is allocated. Then it does repose relaxation which can distribute the sand further out. The total volume is conserved.
At least, thatās the idea. A relatively simple kernel that leads to surprisingly accurate result. I havenāt read the code either.
The AI wanted to start with a simpler displace-sideways model first, then add ābow-waveā calculation afterward. But the specific behaviors seemed dumb and I figured they would already emerge from a radial-displacement model, which shouldnāt be any more difficult than a displace-sideways hack. So I just went with radial displacement from the outset and it worked out ok.