···115115 tool_response : Jsont.json; (* Response varies by tool *)
116116 }
117117 (** Input provided to PostToolUse hooks.
118118- Note: [tool_response] remains as {!Jsont.json} since response schemas
118118+ Note: [tool_response] remains as {!type:Jsont.json} since response schemas
119119 vary by tool. *)
120120121121 (** {2 Output} *)
+2-2
lib/structured_output.mli
···23232424 {2 Creating Output Formats}
25252626- Use {!of_json_schema} to specify a JSON Schema as a {!Jsont.json} value:
2626+ Use {!of_json_schema} to specify a JSON Schema as a {!type:Jsont.json} value:
2727 {[
2828 let meta = Jsont.Meta.none in
2929 let schema = Jsont.Object ([
···122122val of_json_schema : Jsont.json -> t
123123(** [of_json_schema schema] creates an output format from a JSON Schema.
124124125125- The schema should be a valid JSON Schema Draft 7 as a {!Jsont.json} value.
125125+ The schema should be a valid JSON Schema Draft 7 as a {!type:Jsont.json} value.
126126127127 Example:
128128 {[
+1-1
proto/structured_output.mli
···2323val of_json_schema : Jsont.json -> t
2424(** [of_json_schema schema] creates an output format from a JSON Schema.
25252626- The schema should be a valid JSON Schema Draft 7 as a {!Jsont.json} value.
2626+ The schema should be a valid JSON Schema Draft 7 as a {!type:Jsont.json} value.
27272828 Example:
2929 {[