Readit News logoReadit News
campers commented on Gemini CLI GitHub Actions   blog.google/technology/de... · Posted by u/michael-sumner
radarsat1 · 23 days ago
I'm honestly a bit confused by the free tier of Gemini. I've been using it with different agents (Aider, and then Crush), and I hit the rate limits FAST. Like, after maybe 5 or 6 requests it just blows up. Then I can try again quite a few times, and it hits the limit. Then eventually I guess I hit my daily limit and it just stops working until the next day.

I mean this has been enough to get my feet wet and have some fun with exploring agent-based development, no doubt, and I appreciate it, but I'm having a hard time crossing my experience with,

> generous free-of-charge quotas

as they say. It's not that generous if it stops working after 5 mins? (This morning literally a single sentence I typed into Crush resulted in some back and forth I guess it called the API a few times and it just rate limited-out. Fine, it was probably a lot of requests going on, but, but I literally gave it a single small job to do and it couldn't finish it.)

Meanwhile I seem to be able to use the Gemini web app endlessly and haven't hit any limits yet.

campers · 23 days ago
I added a key rotator to my AI coder, and asked a couple of friends to make keys for me. That helped code a good chunk of http://typedai.dev when 2.5 Pro came out

Deleted Comment

campers commented on Gemini 2.5 Deep Think   blog.google/products/gemi... · Posted by u/meetpateltech
ccozan · a month ago
Actually why not? Recognizing problem complexity as a fist step is really crucial for such expensive "experts". Humans do the same.

And a question to the knowledgeable: does a simple/stupid question cost more in terms of resources then a complex problem? in terms of power consumption.

campers · a month ago
Google actually does provide that service! https://cloud.google.com/vertex-ai/generative-ai/docs/model-...
campers commented on Qwen3-Coder: Agentic coding in the world   qwenlm.github.io/blog/qwe... · Posted by u/danielhanchen
vFunct · a month ago
Much faster than Claude Sonnet 4 with similar results.
campers · a month ago
Looking forward to using this on Cerebras!
campers commented on Gemini Diffusion   simonwillison.net/2025/Ma... · Posted by u/mdp2021
scotty79 · 3 months ago
> they will continue to be handicapped by that lack of institutional knowledge, so to speak

Until we give them access to all Jira tickets instead of just one so they know what's missing.

campers · 3 months ago
I've been thinking about adding in an agent to our Codex/Jules like platform which goes through the git history for the main files being changed, extracts the Jira ticket ID's, look through them for additional context, along with the analyzing the changes to other files in commits.
campers commented on Thoughts on thinking   dcurt.is/thinking... · Posted by u/bradgessler
emporas · 3 months ago
It is knowledge that gets automated, rather than reasoning.

I was thinking of the first solar civilization, which lives totally in space. Near a star, but not in a planet, and no gravitational pull anywhere. They build tubes 10 km long, a shot board is put at one end, and the players at the other end. They shoot darts at the board, and each shot takes 5 hours to reach the target. That's their national sport.

Problem is, I have never played darts, i don't know anyone who plays it, I will ask the LLM to fill in the blanks, of how a story based on that game could be constructed. Then I will add my own story on top of that, I will fix anything that doesn't fit in, add some stuff, remove some other stuff and so on.

For me it saves time, instead of asking people about something, hearing them talk about it or watching them do it, i do data mining on words. Maybe more shallow than experiencing it myself or asking people who know about it first hand, but the time it takes to get some information good enough collapses down to 5 minutes.

Depends on how you use it, it can enhance human capabilities, or indeed, mute them.

campers · 3 months ago
There is a huge focus on training the LLMs to reason, that ability will slowly (or not that slowly depending on your timeframe!) but surely improve in the AI models given the gargantuan amount of money and talent being thrown at the problem. To what level we'll have to wait and see.
campers commented on A 10x Faster TypeScript   devblogs.microsoft.com/ty... · Posted by u/DanRosenwasser
zestyping · 6 months ago
That's a pretty misleading clickbait title. TypeScript isn't getting 10x faster; the TypeScript compiler is getting 10x faster.

I would argue it needs editing, as it violates the HN guideline:

> use the original title, unless it is misleading or linkbait; don't editorialize.

campers · 6 months ago
There isn't a TypeScript runtime, it is just a JavaScript/ECMAScript compiler/transpiler with a type checking and language server
campers commented on GPT-4.5   openai.com/index/introduc... · Posted by u/meetpateltech
zaptrem · 6 months ago
GPT 4.5 pricing is insane: Price Input: $75.00 / 1M tokens Cached input: $37.50 / 1M tokens Output: $150.00 / 1M tokens

GPT 4o pricing for comparison: Price Input: $2.50 / 1M tokens Cached input: $1.25 / 1M tokens Output: $10.00 / 1M tokens

It sounds like it's so expensive and the difference in usefulness is so lacking(?) they're not even gonna keep serving it in the API for long:

> GPT‑4.5 is a very large and compute-intensive model, making it more expensive than and not a replacement for GPT‑4o. Because of this, we’re evaluating whether to continue serving it in the API long-term as we balance supporting current capabilities with building future models. We look forward to learning more about its strengths, capabilities, and potential applications in real-world settings. If GPT‑4.5 delivers unique value for your use case, your feedback (opens in a new window) will play an important role in guiding our decision.

I'm still gonna give it a go, though.

campers · 6 months ago
The price will come down over time as they apply all the techniques to distill it down to a smaller parameter model. Just like GPT4 pricing came down significantly over time.
campers commented on Show HN: Mastra – Open-source JS agent framework, by the developers of Gatsby   github.com/mastra-ai/mast... · Posted by u/calcsam
Palmik · 6 months ago
The example from the landing page does not exactly spark joy:

    testWorkflow
     .step(llm)
       .then(decider)
       .then(agentOne)
       .then(workflow)
     .after(decider)
       .then(agentTwo)
       .then(workflow)
      .commit();

On a first glance, this looks like a very awkward way to represent the graph from the picture. And this is just a simple "workflow" (the structure of the graph does not depend on the results of the execution), not an agent.

campers · 6 months ago
I get the same feeing when I first looked at the LangChain documentation when I wanted to first start tinkering with LLM apps.

I built my own TypeScript AI platform https://typedai.dev with an extensive feature list where I've kept iterating on what I find the most ergonomic way to develop, using standard constructs as much as possible. I've coded enough Java streams, RxJS chains, and JavaScript callbacks and Promise chains to know what kind of code I like to read and debug.

I was having a peek at xstate but after I came across https://docs.dbos.dev/ here recently I'm pretty sure that's that path I'll go down for durable execution to keep building everything with a simple programming model.

campers commented on Show HN: Mastra – Open-source JS agent framework, by the developers of Gatsby   github.com/mastra-ai/mast... · Posted by u/calcsam
bobremeika · 6 months ago
A TypeScript first AI framework is something that has been missing. How do you work with AI SDK?
campers · 6 months ago
https://typedai.dev is another full-featured one I've built, with a web UI, multi-user support, code editing agents, CodeAct autonomous agent

u/campers

KarmaCake day356June 3, 2014
About
DevOps/SRE lead for TrafficGuard - Ad fraud protection platform with clients such as Disney Streaming, Gojek, BetFred, Bet365, Singtel. https://www.trafficguard.ai

Java/Kotlin/JS/TypeScript/Node.js/Google Cloud developer in Perth, Australia

https://apporchestra.com

daniel.campagnoli@trafficguard.ai https://www.linkedin.com/in/danielcampagnoli/

meet.hn/city/au-Perth

Socials: - linkedin.com/in/danielcampagnoli

Interests: AI/ML, DevOps, Cybersecurity, Outdoor Activities, Open Source

---

View Original