Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
16c75484
Commit
16c75484
authored
Dec 07, 2023
by
Michael Yang
Browse files
fix redundant newline
parent
f9b7d65e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
cmd/cmd.go
cmd/cmd.go
+5
-5
No files found.
cmd/cmd.go
View file @
16c75484
...
...
@@ -714,11 +714,11 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {
case
MultilineSystem
:
opts
.
System
=
prompt
prompt
=
""
fmt
.
Println
(
"Set system template.
\n
"
)
fmt
.
Println
(
"Set system template."
)
case
MultilineTemplate
:
opts
.
Template
=
prompt
prompt
=
""
fmt
.
Println
(
"Set model template.
\n
"
)
fmt
.
Println
(
"Set model template."
)
}
multiline
=
MultilineNone
case
strings
.
HasPrefix
(
line
,
`"""`
)
&&
len
(
prompt
)
==
0
:
...
...
@@ -793,9 +793,9 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {
if
found
{
opts
.
System
=
prompt
if
args
[
1
]
==
"system"
{
fmt
.
Println
(
"Set system template.
\n
"
)
fmt
.
Println
(
"Set system template."
)
}
else
{
fmt
.
Println
(
"Set prompt template.
\n
"
)
fmt
.
Println
(
"Set prompt template."
)
}
prompt
=
""
}
else
{
...
...
@@ -809,7 +809,7 @@ func generateInteractive(cmd *cobra.Command, opts generateOptions) error {
}
}
else
{
opts
.
System
=
line
fmt
.
Println
(
"Set system template.
\n
"
)
fmt
.
Println
(
"Set system template."
)
}
default
:
fmt
.
Printf
(
"Unknown command '/set %s'. Type /? for help
\n
"
,
args
[
1
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment