| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package AI::Ollama::CreateModelResponse 0.05; |
|
2
|
|
|
|
|
|
|
# DO NOT EDIT! This is an autogenerated file. |
|
3
|
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
20
|
use 5.020; |
|
|
1
|
|
|
|
|
5
|
|
|
5
|
1
|
|
|
1
|
|
6
|
use Moo 2; |
|
|
1
|
|
|
|
|
15
|
|
|
|
1
|
|
|
|
|
11
|
|
|
6
|
1
|
|
|
1
|
|
477
|
use experimental 'signatures'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
8
|
|
|
7
|
1
|
|
|
1
|
|
186
|
use stable 'postderef'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
6
|
|
|
8
|
1
|
|
|
1
|
|
137
|
use Types::Standard qw(Enum Str Bool Num Int HashRef ArrayRef); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
9
|
|
|
9
|
1
|
|
|
1
|
|
3167
|
use MooX::TypeTiny; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
8
|
|
|
10
|
|
|
|
|
|
|
|
|
11
|
1
|
|
|
1
|
|
1097
|
use namespace::clean; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
7
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=encoding utf8 |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
AI::Ollama::CreateModelResponse - |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
my $obj = AI::Ollama::CreateModelResponse->new(); |
|
22
|
|
|
|
|
|
|
... |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=cut |
|
25
|
|
|
|
|
|
|
|
|
26
|
0
|
|
|
0
|
0
|
|
sub as_hash( $self ) { |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
27
|
0
|
|
|
|
|
|
return { $self->%* } |
|
28
|
|
|
|
|
|
|
} |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 PROPERTIES |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 C<< status >> |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Status creating the model |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
has 'status' => ( |
|
39
|
|
|
|
|
|
|
is => 'ro', |
|
40
|
|
|
|
|
|
|
isa => Enum[ |
|
41
|
|
|
|
|
|
|
"creating system layer", |
|
42
|
|
|
|
|
|
|
"parsing modelfile", |
|
43
|
|
|
|
|
|
|
"success", |
|
44
|
|
|
|
|
|
|
], |
|
45
|
|
|
|
|
|
|
); |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
1; |