exif-ai
Version:
A powerful Node.js CLI and library that uses AI providers (OpenAI, Google Gemini, Anthropic Claude, Mistral, Ollama, Amazon Bedrock, Azure OpenAI, DeepInfra, Fireworks, XAI, OpenRouter, and more) to intelligently write image descriptions and tags to EXIF
14 lines (13 loc) • 381 B
TypeScript
export declare function getDescription({ buffer, model, prompt, provider, }: {
buffer: Buffer;
model?: string;
prompt?: string;
provider?: string;
}): Promise<string>;
export declare function getTags({ buffer, model, prompt, provider, }: {
buffer: Buffer;
model?: string;
prompt?: string;
provider?: string;
}): Promise<string>;