File tree Expand file tree Collapse file tree 4 files changed +13
-24
lines changed
content/manuals/ai/model-runner Expand file tree Collapse file tree 4 files changed +13
-24
lines changed Original file line number Diff line number Diff line change 23
23
"prefix" : [" admonition" , " tabs" ],
24
24
"body" : [
25
25
" " ,
26
- " {{< tabs group= \" $1 \" >}}" ,
27
- " {{< tab name=\" $2 \" >}}" ,
26
+ " {{< tabs >}}" ,
27
+ " {{< tab name=\" $1 \" >}}" ,
28
28
" " ,
29
- " $3 " ,
29
+ " $2 " ,
30
30
" " ,
31
31
" {{< /tab >}}" ,
32
- " {{< tab name=\" $4 \" >}}" ,
32
+ " {{< tab name=\" $3 \" >}}" ,
33
33
" " ,
34
- " $5 " ,
34
+ " $4 " ,
35
35
" " ,
36
36
" {{< /tab >}}" ,
37
37
" {{</tabs >}}" ,
Original file line number Diff line number Diff line change 101
101
.summary-bar {
102
102
@apply my-1 mt-4 flex flex-col rounded-sm border-1 border-gray-100 bg-gray-50 p-4 dark:border-gray-800 dark:bg-gray-900;
103
103
}
104
-
105
- .tabs {
106
- @apply bg-blue/2 rounded-sm p-2;
107
- }
108
- .tablist {
109
- @apply mb-1 border-b border-gray-100 dark:border-gray-800;
110
- }
111
-
112
- .tab-item {
113
- @apply inline-block rounded-sm px-3 py-2 hover:bg-gray-100 dark:hover:bg-gray-900;
114
- @apply dark:text-gray-200;
115
- }
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ You can now use the `docker model` command in the CLI and view and interact with
83
83
84
84
Models are cached locally.
85
85
86
- {{< tabs group="release" >}}
86
+ {{< tabs >}}
87
87
{{< tab name="From Docker Desktop">}}
88
88
89
89
1 . Select ** Models** and select the ** Docker Hub** tab.
@@ -99,14 +99,14 @@ Use the [`docker model pull` command](/reference/cli/docker/).
99
99
100
100
## Run a model
101
101
102
- {{< tabs group="release" >}}
102
+ {{< tabs >}}
103
103
{{< tab name="From Docker Desktop">}}
104
104
105
105
Select ** Models** and select the ** Local** tab and click the play button.
106
106
The interactive chat screen opens.
107
107
108
108
{{< /tab >}}
109
- {{< tab name="From the Docker CLI" >}}
109
+ {{< tab name="From the Docker CLI">}}
110
110
111
111
Use the [ ` docker model run ` command] ( /reference/cli/docker/ ) .
112
112
@@ -117,7 +117,7 @@ Use the [`docker model run` command](/reference/cli/docker/).
117
117
118
118
To troubleshoot potential issues, display the logs:
119
119
120
- {{< tabs group="release" >}}
120
+ {{< tabs >}}
121
121
{{< tab name="From Docker Desktop">}}
122
122
123
123
Select ** Models** and select the ** Logs** tab.
Original file line number Diff line number Diff line change 6
6
7
7
8
8
< div
9
- class ="tabs "
10
9
{{ with $group }}
11
10
{{ if $persist }}
12
11
x-data ="{ selected: $persist('{{ $first }}').as('{{ $groupID }}') } "
20
19
{{ end }}
21
20
aria-role ="tabpanel "
22
21
>
23
- < div aria-role ="tablist " class ="tablist ">
22
+ < div aria-role ="tablist " class ="space-x-2 ">
24
23
{{ range (.Store.Get "tabs") }}
25
24
< button
26
- class ="tab-item "
25
+ class ="p-1 "
27
26
:class ="selected === '{{ .name | urlize }}' &&
28
27
'border-blue border-b-4 dark:border-b-blue-600' "
29
28
{{ if $group }}
37
36
</ button >
38
37
{{ end }}
39
38
</ div >
39
+ < hr class ="!mt-0 " />
40
40
< div >
41
41
{{ range (.Store.Get "tabs") }}
42
42
< div
47
47
</ div >
48
48
{{ end }}
49
49
</ div >
50
+ < hr />
50
51
</ div >
You can’t perform that action at this time.
0 commit comments