convert_to_markdown
Transform web pages into Markdown format using AI, enabling efficient extraction and conversion of URL content for LLM-friendly integration via ReviewWeb.site API.
Instructions
Convert a URL to Markdown using AI via ReviewWeb.site API. Turn a web page into LLM-friendly content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
debug | No | Enable debug mode for detailed logging | |
delayAfterLoad | No | Optional delay after page load in milliseconds | |
model | No | AI model to use for conversion | |
url | Yes | The URL to convert to Markdown |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"debug": {
"description": "Enable debug mode for detailed logging",
"type": "boolean"
},
"delayAfterLoad": {
"description": "Optional delay after page load in milliseconds",
"type": "number"
},
"model": {
"description": "AI model to use for conversion",
"type": "string"
},
"url": {
"description": "The URL to convert to Markdown",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}