@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
11 lines (10 loc) • 384 B
TypeScript
import type { CommonToolsOptions } from '../../../../execution/CommonToolsOptions';
import type { PrepareAndScrapeOptions } from '../../../../prepare/PrepareAndScrapeOptions';
export type AgentCollectionInSupabaseOptions = PrepareAndScrapeOptions & CommonToolsOptions & {
/**
* The Supabase tables prefix to use
*
* @default ''
*/
tablePrefix?: string;
};