Dwarves
Memo
Type ESC to close search bar

AI digest #1 Aider reasoning, OpenAI Realtime API, Cline - pre Claude-dev

This week’s AI updates are all about making life easier for developers working with agentic tools. Cline, formerly known as Claude Dev, just dropped its v2.0.0 update with faster response times and real-time interactions, perfect for streamlining workflows. OpenAI’s Realtime API is a game-changer for real-time function chaining and voice-based coding with Ada. And finally, Aider’s Architect/Editor split simplifies complex code reasoning, making pair programming smoother than ever.

Cline - (prev. Claude Dev)

The new Cline v2.0.0 update is packed with cool upgrades. First off, “Claude Dev” has been rebranded as Cline, and it now works faster across different models. You get real-time responses streamed right into your editor, and there’s a cancel button so you can stop things if Cline heads in the wrong direction. They also switched to using XML tags for tool interactions, which cuts down on requests by 40%, making everything smoother. Another, you can search and use any OpenRouter model easily, and the project now runs under the Apache 2.0 license.

Realtime API with o1 assistant

We founded it github repository 2 week ago. The speaker talks about real-time APIs provide by OpenAI and the way communicate with o1 assistant. It’s cool to see how OpenAI has made a game challenge for the coding assistant, letting software engineers now interact with LLMs using voice. Here are some key points from the talk:

Aider - separating code reasoning and editing

New approach from Aider:

Aider’s new “Architect/Editor” feature is inspired by OpenAI’s o1 models. Instead of struggling with perfect code edits, it lets the LLM describe the solution freely, then passes that to a second LLM to generate code updates. This way, it’s faster and smoother, making complex sources code easier to handle while still keeping that interactive, pair-programming feel.

pip install -U aider-chat

# Change directory into a git repo
cd /to/your/git/repo

# Work with Claude 3.5 Sonnet as the Architect and Editor
export ANTHROPIC_API_KEY=your-key-goes-here
aider --sonnet --architect

# Work with OpenAI models, using gpt-o1 as the Architect & gpt-4o-mini as the Editor 
export OPENAI_API_KEY=your-key-goes-here
aider --model openrouter/openai/o1-preview --architect --editor-model openrouter/openai/gpt-4o-mini