askexperts
Version:
AskExperts SDK: build and use AI experts - ask them questions and pay with bitcoin on an open protocol
21 lines (20 loc) • 603 B
TypeScript
import { Command } from "commander";
import { ExpertCommandOptions } from "./index.js";
interface SearchCommandOptions extends ExpertCommandOptions {
relays?: string;
search?: string;
tags?: string;
}
/**
* Search expert profiles from specified relays
*
* @param options Command options
*/
export declare function searchExperts(options: SearchCommandOptions): Promise<void>;
/**
* Register the search command with the expert command group
*
* @param program The commander program or parent command
*/
export declare function registerSearchCommand(program: Command): void;
export {};