UNPKG

rawi

Version:

Rawi (راوي) is the developer-friendly AI CLI that brings the power of 11 major AI providers directly to your terminal. With seamless shell integration, persistent conversations, and 200+ specialized prompt templates, Rawi transforms your command line into

12 lines (9 loc) 645 B
import { ActTemplate } from './act.js'; declare const findActTemplate: (id: string) => Promise<ActTemplate | undefined>; declare const getAllTemplates: () => Promise<ActTemplate[]>; declare const listActTemplates: () => Promise<void>; declare const listBuiltInTemplates: () => Promise<void>; declare const listCustomTemplates: () => Promise<void>; declare const showActTemplate: (id: string) => Promise<void>; declare const applyActTemplate: (templateId: string, userInput: string) => Promise<string>; export { applyActTemplate, findActTemplate, getAllTemplates, listActTemplates, listBuiltInTemplates, listCustomTemplates, showActTemplate };