The Wire · Showcase
LANGCHAIN SHIPS OPENAI 3.0 SUPPORT, CLINE PATCHES SANDBOX LEAKS
By RepoJournal · Filed · About AI Agents
LangChain's openai integration now supports the OpenAI Python SDK 3.0 while maintaining backward compatibility, and Cline fixes unbounded subprocess growth in long-running deployments.
LangChain released langchain-openai 1.5.0 [1] with full support for OpenAI's 3.0 SDK [3], a major upgrade that shifts from httpx to httpx2 under the hood. The package handles both 2.x and 3.x versions simultaneously, reexporting httpx compatibility to avoid environment friction since langchain-core already depends on it. Model profile data refreshed across DeepSeek and other providers [2], tracking the latest capabilities as vendors ship updates.
Cline addressed critical resource leaks in production deployments. A fix reclaims idle plugin sandbox processes [4] that were accumulating at 58 MB per session in long-running hubs, preventing unbounded growth from connector sessions that never release. Separately, the auto-updater now defers installation until no CLI is attached [7], stopping the pattern where background updates killed live sessions mid-turn. A companion fix prevents desktop sidecars from retiring busy Hubs while in-flight work is active [6].
OpenHands removed a broken QA workflow that crashed at startup with an import error, cleaning up CI noise. LLama Index restored compatibility with qdrant-client 1.19.0 [8] by handling the removal of IDF_EMBEDDING_MODELS from the library's public API. Cline also shipped web search toggles [5] in VS Code and desktop apps, letting users opt in to provider-aware web search that was disabled by default since its introduction.
One email a day. Unsubscribe in one click.
Keep up with AI Agents in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.
One email a day. Unsubscribe in one click. Read a past issue →
Action items
- → Upgrade langchain-openai to 1.5.0 if running OpenAI 3.x SDK langchain-ai/langchain [plan]
- → Upgrade Cline to latest patch to stop sandbox process leaks in production hubs cline/cline [immediate]
- → Update llama_index qdrant integration if you run qdrant-client 1.19.0 run-llama/llama_index [plan]
References
- [1] langchain-openai==1.5.0 ↗ langchain-ai/langchain
- [2] chore(model-profiles): refresh model profile data ↗ langchain-ai/langchain
- [3] feat(openai): support openai 3.0 SDK ↗ langchain-ai/langchain
- [4] fix(core): reclaim idle plugin sandbox processes ↗ cline/cline
- [5] feat: add web search settings toggle to VS Code extension and desktop app ↗ cline/cline
- [6] fix(core): defer replacing a Hub that is serving live sessions ↗ cline/cline
- [7] fix(cli): defer auto-update install until no CLI is attached to the hub ↗ cline/cline
- [8] fix(qdrant): restore compatibility with qdrant-client 1.19.0 ↗ run-llama/llama_index