@visactor/vmind
Version:
<div align="center"> <a href="https://github.com/VisActor#gh-light-mode-only" target="_blank"> <img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_light.svg"/> </a> <a href="https://githu
14 lines (13 loc) • 580 B
TypeScript
import { AtomName } from '../../types/atom';
import type { BaseOptions } from '../../types';
import { BaseAtom } from '../base';
import type { LLMMessage } from '../../types/llm';
import type { ImageReaderCtx } from './interface';
export declare class ImageReader extends BaseAtom<ImageReaderCtx, BaseOptions> {
name: AtomName;
isLLMAtom: boolean;
constructor(context: ImageReaderCtx, option: BaseOptions);
getLLMMessages(query?: string): LLMMessage[];
parseLLMContent(resJson: any): ImageReaderCtx;
}
export declare const registerImageReaderAtom: () => void;