UNPKG
deepinfra
Version:
latest (2.0.2)
2.0.2
Official API wrapper for DeepInfra
github.com/deepinfra/deepinfra-node
deepinfra/deepinfra-node
deepinfra
/
dist
/
lib
/
types
/
questions-answering
/
response.d.ts
10 lines
(9 loc)
•
242 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Status
}
from
"../../../lib/types/common/status"
;
export
interface
QuestionAnsweringResponse
{
answer
:
string
;
score
:
number
;
start
:
number
;
end
:
number
;
request_id
:
string
|
null
;
inference_status
:
Status
; }