mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 18:36:41 +02:00
cmd: preserve exact bytes when displaying template/system layers (#7586)
This commit is contained in:
parent
d7eb05b936
commit
67691e410d
1 changed files with 2 additions and 2 deletions
|
@ -800,9 +800,9 @@ func ShowHandler(cmd *cobra.Command, args []string) error {
|
|||
case "parameters":
|
||||
fmt.Println(resp.Parameters)
|
||||
case "system":
|
||||
fmt.Println(resp.System)
|
||||
fmt.Print(resp.System)
|
||||
case "template":
|
||||
fmt.Println(resp.Template)
|
||||
fmt.Print(resp.Template)
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue