@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) • 616 B
TypeScript
import { AtomName } from '../../types/atom';
import type { BaseOptions } from '../../types';
import { BaseAtom } from '../base';
import type { LLMMessage } from '../../types/llm';
import type { ChartQAExtractionCtx } from '../../types';
export declare class ChartQAExtraction extends BaseAtom<ChartQAExtractionCtx, BaseOptions> {
name: AtomName;
isLLMAtom: boolean;
constructor(context: ChartQAExtractionCtx, option: BaseOptions);
getLLMMessages(query?: string): LLMMessage[];
parseLLMContent(resJson: any): ChartQAExtractionCtx;
}
export declare const registerChartQAExtractionAtom: () => void;