# condense-json 1.1 发布，新增非字符串替换值和对象合并功能，并引入基于 Hypothesis 的往返测试，提升与 LLM 集成的能力

- 来源：Simon Willison
- 发布时间：2026-08-03 12:56
- AIWatch 分数：53
- AIWatch 标记：未精选
- AIWatch 链接：https://aiwatch.icu/events/evt_01kz7mtavjr9e8mb194063f5e5
- 原文链接：https://simonwillison.net/2026/Aug/3/condense-json/#atom-everything

## 精选理由

常规快讯，保留列表

## AI 摘要

condense-json 1.1 发布，新增非字符串替换值和对象合并功能，并引入基于 Hypothesis 的往返测试，提升与 LLM 集成的能力。

## 正文

After shipping condense-json 1.0 I started integrating it into LLM, and found there were some desirable new features already:

Replacements object can now include values other than strings. These will be identified and used as structural replacements by condense_json() and uncondense_json(). #8 Objects can be used as the basis for merge operations. condense_json() will identify if there are objects that are a close match and will store instructions for keys to update or delete. uncondense_json() can then apply these merges.

I also added some round-trip tests using the Hypothesis property-based Python testing library.
