2023-11-28 21:13:15 +08:00

6 lines
161 B
TypeScript

export type PostReRankProps = {
query: string;
inputs: { id: string; text: string }[];
};
export type PostReRankResponse = { id: string; score?: number }[];