UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

14 lines (13 loc) 437 B
import type { CommonToolsOptions } from '../../../../execution/CommonToolsOptions'; import type { PrepareAndScrapeOptions } from '../../../../prepare/PrepareAndScrapeOptions'; /** * Options for agent collection in supabase. */ export type AgentCollectionInSupabaseOptions = PrepareAndScrapeOptions & CommonToolsOptions & { /** * The Supabase tables prefix to use * * @default '' */ tablePrefix?: string; };