UNPKG

@abhagsain/ai-cli

Version:

Get answers for CLI commands from GPT3 right from your terminal

19 lines (18 loc) 499 B
import { Command } from "@oclif/core"; export default class AI extends Command { static description: string; static usage: string; static help: string; static args: { name: string; description: string; required: boolean; }[]; static examples: string[]; getAnswersFromGPT3({ question, API_KEY, }: { question: string; API_KEY: string; }): Promise<any>; showOptions(answer: string): Promise<void>; run(): Promise<void>; }