exbert / client /src /ts /api /responses.ts
bhoov's picture
Make server/component frontend pair
fe4a287
raw
history blame
458 Bytes
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
}