Skip to main content

to_markdown

Creates, updates, deletes, gets or lists a to_markdown resource.

Overview

Nameto_markdown
TypeResource
Idcloudflare.ai.to_markdown

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
extensionstring
mimeTypestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idLists all file formats supported for conversion to Markdown.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.

SELECT examples

Lists all file formats supported for conversion to Markdown.

SELECT
extension,
mimeType
FROM cloudflare.ai.to_markdown
WHERE account_id = '{{ account_id }}' -- required
;