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

27 lines (25 loc) 1.07 kB
declare const APP_NAME = "rawi"; declare const CONFIG_DIR_NAME = ".rawi"; declare const CREDENTIALS_FILE_NAME = "credentials"; declare const DEFAULT_PROFILE = "default"; declare const DEFAULT_TEMPERATURE = 0.7; declare const DEFAULT_MAX_TOKENS = 2048; declare const DEFAULT_LANGUAGE = "english"; declare const DEFAULT_HISTORY_LIMIT = 50; declare const MAX_HISTORY_LIMIT = 1000; declare const DEFAULT_SESSION_TITLE_LENGTH = 50; declare const PROVIDER_DISPLAY_NAMES: { readonly anthropic: "🟣 Anthropic (Claude)"; readonly google: "🔴 Google (Gemini)"; readonly openai: "🔵 OpenAI (GPT)"; readonly xai: "🤖 xAI (Grok)"; }; declare const TEMPERATURE_LIMITS: { readonly min: 0; readonly max: 2; }; declare const TOKEN_LIMITS: { readonly min: 1; readonly max: 100000; }; export { APP_NAME, CONFIG_DIR_NAME, CREDENTIALS_FILE_NAME, DEFAULT_HISTORY_LIMIT, DEFAULT_LANGUAGE, DEFAULT_MAX_TOKENS, DEFAULT_PROFILE, DEFAULT_SESSION_TITLE_LENGTH, DEFAULT_TEMPERATURE, MAX_HISTORY_LIMIT, PROVIDER_DISPLAY_NAMES, TEMPERATURE_LIMITS, TOKEN_LIMITS };