rawi
Version:
Rawi (راوي) is the developer-friendly AI CLI that brings the power of 12 major AI providers directly to your terminal. With seamless shell integration, persistent conversations, and 200+ specialized prompt templates, Rawi transforms your command line into
14 lines (11 loc) • 585 B
TypeScript
import { LooseToStrict, ModelInfo, RawiCredentials, StreamingResponse } from '../shared/types.js';
type LooseLMStudioModelId = string;
type LMStudioModelId = LooseToStrict<LooseLMStudioModelId>;
declare const lmstudioModels: ModelInfo[];
declare const lmstudioProvider: {
readonly name: "lmstudio";
readonly displayName: "🟣 LM Studio";
readonly models: ModelInfo[];
};
declare const streamWithLMStudio: (credentials: RawiCredentials, prompt: string) => Promise<StreamingResponse>;
export { type LMStudioModelId, lmstudioModels, lmstudioProvider, streamWithLMStudio };