Sync pending upload operations to cache
Syncs pending file uploads to the cache and updates their final status. Use this after uploads to verify all files are processed and check for failures.
/plugin marketplace add dnvriend/gemini-file-search-tool/plugin install gemini-file-search-tool@gemini-file-search-tool--store nameSynchronize pending upload operations and update cache with final status.
gemini-file-search-tool sync-cache --store "STORE_NAME" [OPTIONS]
--store NAME: Store name (required)--num-workers N: Parallel workers (default: 4)--text: Human-readable output (default: JSON)-v: Verbose logging# Sync with default workers
gemini-file-search-tool sync-cache --store "papers"
# Sync with 8 parallel workers
gemini-file-search-tool sync-cache --store "codebase" --num-workers 8 -v
# Human-readable output
gemini-file-search-tool sync-cache --store "docs" --text
Returns JSON with synced/failed/pending counts and operation details (or text format with --text).