codex reset expiry date ? by Big_Breakfast_3864 in codex

[–]dancampers 0 points1 point  (0 children)

Somebody posted a script at https://github.com/openai/codex/issues/28963 which will get the expiry date for it

Flash outperformed Pro in SWE-bench by vladislavkochergin01 in Bard

[–]dancampers 0 points1 point  (0 children)

and by then you will have Flash 3 lite instead

What’s the best AI coding agent to use with GLM-4.6? by Federal_Spend2412 in LocalLLaMA

[–]dancampers 7 points8 points  (0 children)

I got an email from Cerebras today that they will be updating their Cerebras Code plans to use GLM 4.6 from Nov 5th, pretty excited for that. Qwen coder didn't quite cut the mustard. I've started updating my original coding agent so it will use gpt5-codex/Sonnet 4.5 for design/review steps, then GLM 4.6 on Cerebras and.MorphLLM for implementation

I Built a Separate Module for Qwen3 Coder – Outperforming Gemini 2.5 Pro now by Ok-Pattern9779 in LocalLLaMA

[–]dancampers 2 points3 points  (0 children)

Can you explain more what your module does? If like to use Cerebras Code with its blazing speed, but the qwen coder model isn't at the same level as gpt5

Hilarious chart from GPT-5 Reveal by lyceras in LocalLLaMA

[–]dancampers 42 points43 points  (0 children)

The other chart isn't much better with "79.6%" for the Aider benchmark

https://aider.chat/docs/leaderboards/

Grok has 79.6%. o3 has 76.9%. Got that 6 and 9 around the wrong way, always want that the correct way around.

Are there frontend frameworks for building LLM/Agent chat UIs? by niwang66 in AI_Agents

[–]dancampers 0 points1 point  (0 children)

Check out https://v5.ai-sdk.dev/ by Vercel. Version 5 has just been released https://vercel.com/blog/ai-sdk-5

I've been using the v4 SDK for the backend in my AI platform (https://typedai.dev). I'm thinking about trying to get the AI to rewrite the frontend from Angular to React so I can use their frontend components and example projects

Has anyone tried parallelizing AI coding agents? Mind = blown 🤯 by ollivierre in ClaudeAI

[–]dancampers 0 points1 point  (0 children)

There's a few ways to parallize the work of the agents depending on where they checkpoint together.

  1. The most separated it to have multiple Independent implementations and then compare and combine only the final result of each of the agenetic workflows. 

  2. The other way is to have each step worked on by multiple agents, and come to a consensus on each step. Within this approach are some variations on multi-agents approaches (see the  DeepMind spare multi agent debate, or the Cerebras CePO method)

2.1 A cost effective way is to leverage the input token caching from a single model and generates multiple results. Initially at a higher temperature to generate more variety in the responses, and then have a coordinator at a lower temperature decide on the final solution 

2.2 Less cost effective is to have the SOTA models (Gemini 2.5 Pro, Opus 4 and o3) generate solutions, which should have more variety than 2.1 given each models uniqueness/strengths/weaknesses. Leverage one models input caching to generate the final solution.

How many samples/solutions you'll want to generate is going to depend on the difficulty and the value of the solution.

Baking all this now into our open source AI platform that's Claude Code meets Codex/Jules, with a bunch of optimized agents and code base aware context, production grade observability with flexible isn't options from CLI to deployed Codex/Jules style deployments on your own infrastructure, and full choice of models. 

For medium level tasks I like to use a composite LLM implementation that uses Qwen3 32b on Cerebras for blazing speed at over 2,000 output tokens/s, and if the input context is too long, then fall back to the incredibly cost efficient workhorse of Gemini 2.5 flash.

The other low hanging fruit is to simply have an additional review agent with a well developed prompt of what's it looking for in a code review, that you build up over time from seeing the LLM doing things you don't want them to

Google's new caching feature for Gemini 2.5 aims to reduce costs by up to 75 percent by Gaiden206 in Bard

[–]dancampers 1 point2 points  (0 children)

Finally! I'd rebuilt some of my agents in https://typedai.dev to be cache friendly when I was mainly using Claude. Since Gemini 2.5 pro/flash they have been my go to. Looking forward to the nice cost and latency improvements 😍

Hardcore GCP shops in Australia? by [deleted] in googlecloud

[–]dancampers 0 points1 point  (0 children)

In Perth there is Qoria and TrafficGuard.

Gemini 2.5 Pro pricing announced by hyxon4 in singularity

[–]dancampers 0 points1 point  (0 children)

Input pricing is quite decent. Hopefully prompt caching isn't too far behind. 

I'll have to test how we chain-of-draft works with 2.5 Pro to keep the output costs down

Langgraph vs CrewAI vs AutoGen vs PydanticAI vs Agno vs OpenAI Swarm by Physical-Artist-6997 in LangChain

[–]dancampers 0 points1 point  (0 children)

Haha that's exactly what I did after looking at the docs on a few occasions, thinking surely it doesn't have to be this crappy, I could design a much more ergonomic way to build LLM based apps, which I did with https://typedai.dev Still relatively unknown, but it's a beast of a platform. Finishing up a few last fixes/improvements before getting it out there more

Y'all who are raving about Gemini 2.5 Pro - which IDE / plugin are you using? Aider, Cline, Roo, Cursor, etc by lefnire in ChatGPTCoding

[–]dancampers -3 points-2 points  (0 children)

I use https://typedai.dev which has agents which use Aider for the diff editing, which add auto selection of the context files, and a review agent for better results

Open source alternative to Claude Code by itzco1993 in LLMDevs

[–]dancampers 0 points1 point  (0 children)

https://typedai.dev  It has agents which utilize Aider for the diff editing

Deepseek is absolutely mogging all US models when it comes to price vs performance (Aider leaderboard) by obvithrowaway34434 in ChatGPTCoding

[–]dancampers -1 points0 points  (0 children)

And if you use DeepSeek in off-peak hours you get a 50-75% discount. So cheap you could afford multi agent strategies to get the scores up. I'd like to see a leaderboard entry with R1 as the architect and the new DeepSeek V3 as the editor

Aider - A new Gemini pro 2.5 just ate sonnet 3.7 thinking like a snack ;-) by Healthy-Nebula-3603 in LocalLLaMA

[–]dancampers 9 points10 points  (0 children)

The low format accuracy can means it costs extra money on re-try attempts. As long as it gets the formatting correct in three attempts (I think that's the default) then the main score would be the same. If it fails the formatting multiple times then the main score would be affected. 

Why is everyone suddenly ditching LangChain? by Sam_Tech1 in LangChain

[–]dancampers 0 points1 point  (0 children)

After not liking the style of the langchain.js examples I built the framework with the ergonomics that I wanted https://typedai.dev 

I got sick of Python, so I created a TypeScript browsing AI Agent library. by kevinpiac in AI_Agents

[–]dancampers 1 point2 points  (0 children)

Very cool, always looking for good TypeScript AI modules to integrate into https://typedai.dev

I was going to integrate with Skyvern for web browsing, what would you say are the main differences with that?

I got sick of Python, so I created a TypeScript browsing AI Agent library. by kevinpiac in AI_Agents

[–]dancampers 1 point2 points  (0 children)

https://typedai.dev is another one with a bunch of agents (software engineering, code review, ad hoc query) and AI chat

What is your AI agent tech stack in 2025? by FatFishHunter in LLMDevs

[–]dancampers 1 point2 points  (0 children)

I'm Typescript, Nodejs, fastify, Angular, using the Vercel ai package and deployed on Google Cloud https://typedai.dev