mmnt_cache
Retrieve cached web pages from Mamont search engine. Specify a unique cache ID and choose to extract text-only or full HTML content.
Instructions
Extract page from Mamont cache
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | unique cache id | |
onlyText | Yes | Should the result be text only (no html) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "unique cache id",
"type": "string"
},
"onlyText": {
"description": "Should the result be text only (no html)",
"type": "boolean"
}
},
"required": [
"id",
"onlyText"
],
"type": "object"
}