mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-27 10:52:03 +08:00
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
|
|
export interface ITestMcpRequestBody {
|
||
|
|
server_type: string;
|
||
|
|
url: string;
|
||
|
|
headers?: Record<string, any>;
|
||
|
|
variables?: Record<string, any>;
|
||
|
|
timeout?: number;
|
||
|
|
}
|