Model Releases

  • froggeric/Qwen-Fixed-Chat-Templates — 🤖 A collection of corrected Jinja chat templates for Qwen 3.5/3.6 targeting mlx, llama.cpp, vLLM, and LM Studio, with tool-calling and thinking modes. If your local Qwen deployments kept mangling function calls or reasoning tags, this saves you from hand-editing Jinja.

  • OpenMOSS-Team/MOSS-Transcribe-Diarize — 🤖 A multimodal model that does ASR with speaker diarization and timestamps for long-form audio in English, Chinese, and Arabic. Runs via transformers with custom code, so you can self-host transcription instead of shipping audio to a cloud API.

Open Source Releases

  • moodtrip-hotel-search — An NL-driven hotel search that turns “boutique place in Tokyo under $200” into real-time filtered results, sitting at 3,093 installs. Nice if you’re prototyping natural-language-to-structured-query interfaces, less so if you just want to book a room without another AI middleman.

  • anthropics/claude-code: v2.1.207 — 🛠️ Auto mode is now on by default for Bedrock, Vertex, and Foundry (disable via disableAutoMode), plus a fix for terminal freezing and keystroke lag during streamed responses. If you live in the CLI coding agent, this removes a couple of annoyances.

  • praisonaiagents 1.6.146 — 🛠️ A Python package for building multi-agent systems with self-reflection loops to tackle complex tasks. Another entry in the crowded agent-framework space; worth a look if you want reflection baked in rather than rolling your own.

Research Worth Reading

Today’s Synthesis

If you’re building tool-use agents and tired of fighting sparse RL rewards, combine the self-distillation recipe from DeepSearch-World with the self-reflection loops already shipped in praisonaiagents 1.6.146 . The paper shows you can train search agents from their own successful trajectories inside a verifiable environment — no human-labeled gold paths required. Practically: run your agent, log the trajectories that actually hit the verifier, then feed those back as few-shot examples or distillation targets in the framework’s reflection step. You get a tighter loop than waiting for a reward model to figure out credit assignment over a 20-step horizon. For the implementation grind itself, anthropics/claude-code: v2.1.207 just made auto mode default and fixed the terminal freezing that used to make long generation sessions painful, so the iterate-compile-debug cycle won’t fight you. The concrete takeaway: stop treating agent training as either pure prompting or pure RL — bootstrap from your own wins, and keep the tooling out of your way while you do it.