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
11 lines (8 loc) • 873 B
TypeScript
import { ContentFilter } from '../../../../core/content-filter/content-filter.js';
declare const setupContentFilter: (filteringEnabled: boolean, filterTypes: string[] | undefined, options: any) => ContentFilter;
declare const processFilterTypes: (filteringEnabled: boolean, options: any) => string[] | undefined;
declare const filterAndDisplayQuery: (contentFilter: ContentFilter, query: string, filteringEnabled: boolean, options: any) => string;
declare const displayFilterStatistics: (contentFilter: ContentFilter, query: string, filteringEnabled: boolean, options: any) => void;
declare const saveFilterConfig: (contentFilter: ContentFilter, options: any) => void;
declare const resetFilterConfig: (options: any) => ContentFilter;
export { displayFilterStatistics, filterAndDisplayQuery, processFilterTypes, resetFilterConfig, saveFilterConfig, setupContentFilter };