generate_text
Generate filler prose — lorem ipsum, random copy or sentences — for mockups and placeholder content. Returns JSON { text, provider, cached } with the blocks separated by newlines. A language model writes it, so it is a paid call and the output is approximate: type, length and count are phrased into the prompt rather than enforced, and the result will not match a requested character count exactly. For placeholder people (names, emails, addresses) use generate_fake_data, which is exact, free and deterministic. For a real email use draft_email, and to rework existing text use humanize_text. 15 calls per minute per IP; capped at roughly 1,500 tokens; identical requests may return a cached result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Flavour of filler to ask for: classic latin lorem ipsum, arbitrary English copy, or standalone sentences. Default lorem. Used as a prompt hint, so it steers the style rather than guaranteeing it. | |
| count | No | How many separate blocks to return. Default 1. Large values are bounded in practice by the ~1,500 token output cap. | |
| length | No | Rough size of each block in characters. Default 100. Requested in the prompt, so treat it as a target, not a limit. |