mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
export type PostReRankProps = {
|
|
query: string;
|
|
inputs: { id: string; text: string }[];
|
|
};
|
|
export type PostReRankResponse = { id: string; score?: number }[];
|