Files
t6_mem0/embedchain-js/embedchain/models/Input.ts
2023-09-07 05:52:44 +05:30

8 lines
159 B
TypeScript

import type { QnaPair } from './QnAPair';
export type RemoteInput = string;
export type LocalInput = QnaPair;
export type Input = RemoteInput | LocalInput;