UNPKG

askexperts

Version:

AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol

24 lines (23 loc) 648 B
import { Command } from "commander"; import { ExpertCommandOptions } from "./index.js"; /** * Options for the all experts command */ interface AllExpertsCommandOptions extends ExpertCommandOptions { debug?: boolean; interval?: number; startDelay?: number; } /** * Run all enabled experts from the database * * @param options Command options */ export declare function runAllExperts(options: AllExpertsCommandOptions): Promise<void>; /** * Register the all experts command with the CLI * * @param program The commander program or parent command */ export declare function registerAllCommand(program: Command): void; export {};