to_markdown
Creates, updates, deletes, gets or lists a to_markdown resource.
Overview
| Name | to_markdown |
| Type | Resource |
| Id | cloudflare.ai.to_markdown |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
extension | string | |
mimeType | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Lists 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
Lists all file formats supported for conversion to Markdown.
SELECT
extension,
mimeType
FROM cloudflare.ai.to_markdown
WHERE account_id = '{{ account_id }}' -- required
;