UNPKG

@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

8 lines (7 loc) 703 B
import type { LLMManage } from '../../core/llm'; import { Schedule } from '../../schedule'; import type { ILLMOptions } from '../../types'; import { AtomName } from '../../types'; export declare const getText2DataSchedule: (llm: LLMManage, options: ILLMOptions) => Schedule<(AtomName.DATA_EXTRACT | AtomName.DATA_CLEAN)[]>; export declare const getText2MultipleDataSchedule: (llm: LLMManage, options: ILLMOptions) => Schedule<(AtomName.DATA_EXTRACT | AtomName.MULTIPLE_DATA_CLEAN)[]>; export declare const getText2ChartSchedule: (llm: LLMManage, options: ILLMOptions) => Schedule<(AtomName.DATA_EXTRACT | AtomName.DATA_CLEAN | AtomName.DATA_QUERY | AtomName.CHART_COMMAND | AtomName.CHART_GENERATE)[]>;