Sakana AI Commercializes AB-MCTS in Sakana Marlin, an Enterprise Agent Generating Up to 100-Page Research Reports With Slides

Tokyo-based Sakana AI shipped its first commercial product ‘Sakana Marlin’ this week. Sakana team positions it as a Virtual CSO (Chief Strategy Officer). It is a B2B autonomous research agent…

Meet Flash-KMeans: An IO-Aware, Exact K-Means That Runs Over 200× Faster Than FAISS on GPUs

k-means has been an offline tool for decades. You run it once to preprocess data, then move on. A team of researchers from UC Berkeley and UT Austin released Flash-KMeans,…

Z.ai Launches GLM-5.2 With a Usable 1M-Token Context, Two Thinking-Effort Levels, and No Benchmarks at Launch

GLM-5.2 is the latest large language model from Z.ai, becoming the third major release in the GLM-5 line. It follows GLM-5 (February 11), GLM-5-Turbo (March 15), and GLM-5.1 (April 7).…

Claude Code Guide 2026: 25 Features with Examples + Demo

Interactive Demo Claude Code: 25 Features Explorer & Playground Explore the feature stack, run a simulated terminal, test Auto Mode, and build a CLAUDE.md. Runs fully in your browser. All…

A Coding Hands-On on FineWeb for Streaming, Filtering, Deduplication, Tokenization, and Large-Scale Web Corpus Analytics

df[“domain”] = df[“url”].apply(lambda u: urlparse(u).netloc.replace(“www.”, “”) if isinstance(u, str) else “?”) top_domains = df[“domain”].value_counts().head(15) print(“\n— Top 15 domains in sample —“) print(top_domains) fig, axes = plt.subplots(2, 2, figsize=(14, 10)) axes[0,…

Databricks Open-Sources Omnigent: A Meta-Harness That Composes, Governs, and Shares AI Agents Across Claude Code, Codex, and Pi

Databricks released Omnigent, an open source ‘meta-harness’ for AI agents. The project ships under the Apache 2.0 license. The Databricks AI team built it with Neon. A harness is the…

How to Build a QwenPaw Agent Workspace with Custom Skills, Model Providers, Console Access, and Streaming API Testing

if not (WORKING_DIR / “config.json”).exists(): run(qwenpaw_cmd(“init”, “–defaults”), check=False) else: print(“QwenPaw working directory already initialized:”, WORKING_DIR) provider_candidates = [ { “env”: “OPENAI_API_KEY”, “provider_id”: “openai”, “name”: “OpenAI”, “base_url”: “https://api.openai.com/v1”, “model”: os.environ.get(“QWENPAW_MODEL”, “gpt-4o-mini”),…

Anthropic Disables Claude Fable 5 and Mythos 5 After US Government Order

Anthropic has disabled its two most capable models for every customer. The shutdown followed a US government export control directive. The order arrived on June 12, 2026. It named Claude…

Moonshot AI Releases Kimi K2.7-Code: a Coding Model Reporting +21.8% on Kimi Code Bench v2 Over K2.6

This week, Moonshot AI released Kimi K2.7-Code. It is a coding-focused, agentic model. The model weights ship on Hugging Face under a Modified MIT license. You can also reach it…

A Coding Implementation on Spatial Graph Neural Networks for Urban Function Inference Using city2graph, OSMnx, and PyTorch Geometric

poi_gdf[“cx”] = poi_gdf.geometry.x poi_gdf[“cy”] = poi_gdf.geometry.y coords = poi_gdf[[“cx”, “cy”]].to_numpy() nn = NearestNeighbors(radius=150.0).fit(coords) poi_gdf[“local_density”] = [len(idx) – 1 for idx in nn.radius_neighbors(coords, return_distance=False)] if segments_gdf is not None and len(segments_gdf):…