Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 458 Bytes
63858e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import * as tp from '../etc/types'
/**
* All responses will contain a "status" member. The meaning of the number is detailed below
*
* - 405: Requested model did not exist
* - 406: Requested corpus did not exist
*/
interface BaseResponse {
status: number
}
export interface ModelDetailResponse extends BaseResponse {
payload: tp.ModelInfo
}
export interface AttentionDetailsResponse extends BaseResponse {
payload: tp.AttentionResponse
} |