@cotofe/service-of-model
Version:
OpenAPI client for @cotofe/service-of-model
39 lines (38 loc) • 1.29 kB
TypeScript
/**
* Platform
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { ResponseClass } from '../models/index';
import * as runtime from '../runtime';
interface QueryLLMInputOutputRecordUsingGETRequest {
accountId: string;
endTime: string;
endpointId: string;
pageNum: number;
pageSize: number;
startTime: string;
sessionId?: string;
}
/**
*
*/
export declare class ModelLlmApi extends runtime.BaseAPI {
/**
* queryLLMInputOutputRecord
* queryLLMInputOutputRecord
*/
queryLLMInputOutputRecordUsingGETRaw(requestParameters: QueryLLMInputOutputRecordUsingGETRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ResponseClass>>;
/**
* queryLLMInputOutputRecord
* queryLLMInputOutputRecord
*/
queryLLMInputOutputRecordUsingGET(requestParameters: QueryLLMInputOutputRecordUsingGETRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ResponseClass>;
}
export {};