Files
FastGPT/packages/global/core/ai/api.d.ts
2023-11-15 11:36:25 +08:00

6 lines
160 B
TypeScript

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