File Coverage

blib/lib/WebService/Jina/Response.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package WebService::Jina::Response;
2              
3 1     1   4 use Moo;
  1         2  
  1         7  
4              
5 1     1   323 use JSON::Lines qw/jsonl/;
  1         2  
  1         6  
6              
7             has [qw/
8             id
9             choices
10             model
11             object
12             usage
13             system_fingerprint
14             created
15             data
16             results
17             num_tokens
18             tokenizer
19             num_chunks
20             chunk_positions
21             tokens
22             chunks
23             /] => (
24             is => 'ro',
25             );
26              
27             1;
28              
29             __END__