Files
genai-toolbox/docs/en/resources/tools/firestore/firestore-get-documents.md
2025-07-28 14:51:18 -07:00

1.4 KiB

title, type, weight, description, aliases
title type weight description aliases
firestore-get-documents docs 1 A "firestore-get-documents" tool retrieves multiple documents from Firestore by their paths.
/resources/tools/firestore-get-documents

About

A firestore-get-documents tool retrieves multiple documents from Firestore by their paths. It's compatible with the following sources:

firestore-get-documents takes one input parameter documentPaths which is an array of document paths, and returns the documents' data along with metadata such as existence status, creation time, update time, and read time.

Example

tools:
  get_user_documents:
    kind: firestore-get-documents
    source: my-firestore-source
    description: Use this tool to retrieve multiple documents from Firestore.

Reference

field type required description
kind string true Must be "firestore-get-documents".
source string true Name of the Firestore source to retrieve documents from.
description string true Description of the tool that is passed to the LLM.