addedInput schema / properties / body_template
Added value: +{
+ "description": "Request body template.",
+ "type": "string"
+}
addedInput schema / properties / content_type
Added value: +{
+ "description": "Request content type.",
+ "enum": [
+ "application/json",
+ "application/xml",
+ "application/x-www-form-urlencoded",
+ "multipart/form-data",
+ "text/plain",
+ "custom"
+ ],
+ "type": "string"
+}
addedInput schema / properties / method
Added value: +{
+ "description": "HTTP method.",
+ "enum": [
+ "GET",
+ "POST",
+ "PUT",
+ "DELETE",
+ "PATCH",
+ "HEAD",
+ "OPTIONS"
+ ],
+ "type": "string"
+}
addedInput schema / properties / name / description
Added value: +"Internal name for the endpoint."
addedInput schema / properties / query_parameters
Added value: +{
+ "description": "Default query parameters.",
+ "type": "object"
+}
addedInput schema / properties / response_format
Added value: +{
+ "description": "How to parse the response.",
+ "enum": [
+ "json",
+ "xml",
+ "text",
+ "auto"
+ ],
+ "type": "string"
+}
addedInput schema / properties / return_direct
Added value: +{
+ "description": "End the agent turn after this tool returns (for 'send' tools).",
+ "type": "boolean"
+}
addedInput schema / properties / save_to_history
Added value: +{
+ "description": "Include the tool result in conversation history (for 'retrieve' tools).",
+ "type": "boolean"
+}
addedInput schema / properties / static_headers
Added value: +{
+ "description": "Non-secret static request headers.",
+ "type": "object"
+}
addedInput schema / properties / tool_description
Added value: +{
+ "description": "What the tool does (shown to the model).",
+ "type": "string"
+}
addedInput schema / properties / tool_input_schema
Added value: +{
+ "description": "JSON schema of the arguments the agent supplies.",
+ "type": "object"
+}
addedInput schema / properties / tool_name
Added value: +{
+ "description": "The tool name the agent calls it by.",
+ "type": "string"
+}
addedInput schema / properties / url
Added value: +{
+ "description": "Request URL (may contain {path_parameters}).",
+ "type": "string"
+}