askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
23 lines (22 loc) • 592 B
TypeScript
import { Command } from "commander";
import { ExpertCommandOptions } from "./index.js";
/**
* Options for the ls command
*/
interface LsCommandOptions extends ExpertCommandOptions {
type?: string;
search?: string;
}
/**
* List all experts from the database
*
* @param options Command options
*/
export declare function listExperts(options: LsCommandOptions): Promise<void>;
/**
* Register the ls command with the expert command group
*
* @param program The commander program or parent command
*/
export declare function registerLsCommand(program: Command): void;
export {};