You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(client): validate JSON-null structuredContent against outputSchema
SEP-2106 allows structuredContent to be JSON null. The client presence
check used `is None`, which also matches an omitted field, so a tool
that advertised a null-capable outputSchema and returned null was
rejected as missing structured content.
Use model_fields_set so omitted still fails closed, explicit null is
schema-validated, and falsy JSON values (0, false, "") stay checked.
Fixes#3345
0 commit comments