For the complete documentation index, see llms.txt. This page is also available as Markdown.

AI

AI type — process documents or input data using supported external AI and document processing services.

google-document-ai

Processes documents using Google Document AI.

{
  "type": "google-document-ai",
  "configSchema": "{\"$schema\":\"http://json-schema.org/draft-07/schema\",\"additionalProperties\":false,\"title\":\"Google Document AI\",\"type\":\"object\",\"properties\":{\"inputFilename\":{\"description\":\"Input filename\",\"type\":\"string\"},\"filename\":{\"description\":\"File name for output file\",\"type\":\"string\"},\"project\":{\"description\":\"Google Cloud project ID\",\"type\":\"string\"},\"location\":{\"description\":\"Google Cloud processor location\",\"type\":\"string\"},\"processor\":{\"description\":\"Google Document AI processor ID\",\"type\":\"string\"}},\"required\":[\"project\",\"location\",\"processor\"]}",
  "multipleInput": false,
  "outputParam": []
}

gemini

Processes input using a configured Gemini model and prompt.

{
  "type": "gemini",
  "configSchema": "{\"$schema\":\"http://json-schema.org/draft-07/schema\",\"additionalProperties\":false,\"title\":\"Gemini\",\"type\":\"object\",\"properties\":{\"filename\":{\"description\":\"File name for output file\",\"type\":\"string\"},\"temperature\":{\"default\":\"0.5\",\"description\":\"Temperature\",\"type\":\"string\"},\"model\":{\"default\":\"gemini-2.0-flash\",\"description\":\"Model\",\"type\":\"string\"},\"prompt\":{\"description\":\"Prompt\",\"type\":\"string\"}},\"required\":[\"prompt\",\"model\"]}",
  "multipleInput": false,
  "outputParam": []
}

openai

Processes input using a configured OpenAI model and prompt.

Last updated

Was this helpful?