Heads up This site is currently under heavy development.
Subscribe Get it delivered — the daily firehose, filtered to the tools you run, plus the documentation changes vendors never announce. Compare plans →

The AI Toolchain — issue -356, August 25, 2025

THE AI TOOLCHAIN NO. -356
Tail
THE DAILY RELEASE FIREHOSE
PUBLISHED AUGUST 25, 2025 · EVERY WEEKDAY
EDITIONS tail grep head diff uniq

The daily firehose — everything the toolchain shipped today, already filtered.

// HOW THIS ISSUE IS MADE

We read every release from the 174 tools on our watchlist at the source — GitHub and GitLab release notes, vendor release pages and changelogs, project blogs and feeds, vendor press releases, and the source code behind the tag. Bug-fix-only releases and non-product newsroom noise are dropped; what's left is summarized down to the new capability, how to try it, and any screenshots or videos the release itself published. Every entry links to the sources it was built from.

VIEW
ISSUE VIEW full issue
Do you prefer this view?
$ tct list   # 7 tools matched
AI & LLM Tooling
◆  AI Agent Frameworks

Agno (formerly Phidata)

Sources Release notes → v1.8.0 NOTES

Agno v1.8.0 adds MemoriTools, file inputs for Workflows, agentic crawling, and Vertex AI Search support.

└──▷ GET THIS VERSION
$ git clone --branch v1.8.0 https://github.com/agno-agi/agno.git
# already have the repo? check out this version:
$ git checkout v1.8.0
└──▷ USE IT
Give an agent access to GibsonAI Memori for persistent memory across sessions.
python
from agno.tools.memori import MemoriTools

agent = Agent(tools=[MemoriTools()], ...)
  • Adds MemoriTools toolkit, enabling Agents and Teams to interact with GibsonAI's Memori memory service.
  • Adds agentic_crawler parameter to ScrapeGraphTools for agentic web crawling.
  • Adds files=[] parameter to Workflow.run and Workflow.arun for passing file inputs directly to workflow runs.
  • Adds Vertex AI Search support to the Gemini model integration.
  • Updates DuckDuckGoTools to work with the ddgs package (replaces duckduckgo-search).
└──▷ BREAKING ON UPGRADE
  • !DuckDuckGoTools now requires the ddgs package instead of duckduckgo-search; users must install ddgs for DuckDuckGo search to function.
Was this useful?

PydanticAI

Sources Release notes → v0.7.5 NOTES

PydanticAI v0.7.5 adds cost pricing on ModelResponse, span/trace IDs on EvaluationReport, and updated OpenTelemetry GenAI conventions.

└──▷ GET THIS VERSION
$ git clone --branch v0.7.5 https://github.com/pydantic/pydantic-ai.git
# already have the repo? check out this version:
$ git checkout v0.7.5
└──▷ USE IT
Inspect the monetary cost of a model response after an agent run, useful for budget tracking or logging.
python
result = await agent.run('Summarise this document')
print(result.new_messages()[-1].price())
  • Adds price() method to ModelResponse to retrieve cost information for a model response.
  • Adds span_id and trace_id fields to EvaluationReport for linking evaluations to distributed traces.
  • Updates OpenTelemetry instrumentation to use the new GenAI chat span attribute conventions.
  • Includes thoughts tokens in output_tokens accounting for Google models.
  • Allows proper typing on AnthropicProvider when using the Bedrock backend.
└──▷ BREAKING ON UPGRADE
  • !OpenTelemetry span attributes for GenAI chat now follow the new GenAI conventions — any dashboards, alerts, or attribute-based queries built on the old attribute names will need to be updated.
Was this useful?

camel-ai

Sources Release notes → v0.2.75 NOTES

camel-ai v0.2.75 adds Claude 4.1, GPT-5, Mistral Medium 3.1, Nebius AI Studio, MetaSo search, and a TerminalToolkit MCP server.

└──▷ GET THIS VERSION
$ git clone --branch v0.2.75 https://github.com/camel-ai/camel.git
# already have the repo? check out this version:
$ git checkout v0.2.75
└──▷ USE IT
Use the new TerminalToolkit MCP server to give an agent shell access via MCP.
python
from camel.toolkits import TerminalToolkit

toolkit = TerminalToolkit()
tools = toolkit.get_tools()
  • Adds TerminalToolkit MCP server, enabling agents to execute terminal commands via the Model Context Protocol.
  • Updates OpenAIImageToolkit to support generating multiple images in a single call.
  • Adds Ollama API key configuration support for authenticated Ollama endpoints.
  • Adds ChatAgent timeout and retry handling for more resilient agent loops.
  • Adds support for Claude 4.1 models.
+4 moreshow less
  • Adds support for GPT-5 models.
  • Adds support for Mistral Medium 3.1 models.
  • Adds Nebius AI Studio as a new model provider integration.
  • Adds MetaSo (metaso.cn) API as a new search tool integration.
Was this useful?
◆  AI Coding Agents

Continue

Sources Release notes → @continuedev/[email protected] NOTES

Continue gains --mcp, --model, and --prompt CLI flags, new multi-edit tools, Novita provider tool support, and a Unified Terminal.

└──▷ GET THIS VERSION
$ git clone --branch @continuedev/[email protected] https://github.com/continuedev/continue.git
# already have the repo? check out this version:
$ git checkout @continuedev/[email protected]
└──▷ TRY IT
Run Continue non-interactively against a specific model and MCP server, passing a prompt directly — useful in CI pipelines.
$ continue --model gpt-4o --mcp ./mcp-server.json --prompt 'Review this codebase for hardcoded credentials'
  • Adds --mcp and --model CLI flags for specifying MCP servers and models directly from the command line.
  • Adds --prompt CLI flag to supply a prompt directly at invocation.
  • Adds multi-edit and single search-and-replace tools for applying targeted code edits across files.
  • Adds info slash command.
  • Adds tool support for Novita provider models.
+4 moreshow less
  • Introduces a Unified Terminal UI.
  • Adds resource monitoring capability.
  • Adds UI for diff tools, surfacing multi-edit and single-replace actions inline.
  • Adds plan mode system prompt for structured agent planning workflows.
Was this useful?
◆  AI Model & Data Infrastructure

Ollama

Sources Release notes → v0.11.7 NOTES

Get up and running with Kimi-K2.6, GLM-5.2, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models.

Ollama v0.11.7 adds DeepSeek-V3.1 support with hybrid thinking and cloud Turbo mode preview.

└──▷ GET THIS VERSION
$ git clone --branch v0.11.7 https://github.com/ollama/ollama.git
# already have the repo? check out this version:
$ git checkout v0.11.7
└──▷ TRY IT
Run DeepSeek-V3.1 with thinking enabled to get chain-of-thought reasoning alongside the final answer.
$ curl http://localhost:11434/api/chat -d '{"model": "deepseek-v3.1", "messages": [{"role": "user", "content": "why is the sky blue?"}], "think": true}'
Run DeepSeek-V3.1 on Ollama's cloud hardware when local VRAM is insufficient for the 671B model.
$ OLLAMA_HOST=ollama.com ollama run deepseek-v3.1
Toggle thinking on or off interactively during a CLI chat session with a hybrid-thinking model.
$ /set think
# or to disable:
/set nothink
  • Adds DeepSeek-V3.1 (671B parameter model) to the Ollama model library.
  • Supports hybrid thinking on compatible models: enable or disable chain-of-thought reasoning per request via the think field in the API or /set think//set nothink CLI commands.
  • Introduces Turbo mode (preview): routes inference for large models like DeepSeek-V3.1 to cloud hardware via OLLAMA_HOST=ollama.com.
Was this useful?
Other / Uncategorized
◆  AI OBSERVABILITY

Arize Phoenix

Sources Release notes → arize-phoenix-v11.27.0 NOTES

Arize Phoenix v11.27.0 adds support for extra volumes and volume mounts in the Helm chart.

└──▷ GET THIS VERSION
$ git clone --branch arize-phoenix-v11.27.0 https://github.com/Arize-ai/phoenix.git
# already have the repo? check out this version:
$ git checkout arize-phoenix-v11.27.0
  • Adds support for extra volumes and volume mounts in the Helm chart, enabling custom storage configurations for Phoenix deployments.
Was this useful?

Langfuse

Sources Release notes → v3.103.0 NOTES

Langfuse v3.103.0 adds full-text search and metadata filtering for dataset items, plus dashboard filter persistence.

└──▷ GET THIS VERSION
$ git clone --branch v3.103.0 https://github.com/langfuse/langfuse.git
# already have the repo? check out this version:
$ git checkout v3.103.0
  • Adds full-text search for dataset items in the datasets UI.
  • Enables filtering dataset items by metadata keys in the dataset items UI.
  • Adds dashboard filter persistence so filter selections are retained across sessions.
Was this useful?
my-toolchain — 0 tools
paste an install list to detect your tools

A brew list, a Brewfile, requirements.txt, a Dockerfile — or just the product names, free-form. Nothing leaves your browser.

    browse all tools →