print prompt with OLLAMA_DEBUG=1
(#2245)
This commit is contained in:
parent
e4b9b72f2a
commit
f2245c7c77
1 changed files with 4 additions and 0 deletions
|
@ -253,6 +253,8 @@ func GenerateHandler(c *gin.Context) {
|
|||
prompt = rebuild.String()
|
||||
}
|
||||
|
||||
slog.Debug(fmt.Sprintf("prompt: %s", prompt))
|
||||
|
||||
ch := make(chan any)
|
||||
var generated strings.Builder
|
||||
go func() {
|
||||
|
@ -1125,6 +1127,8 @@ func ChatHandler(c *gin.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
slog.Debug(fmt.Sprintf("prompt: %s", prompt))
|
||||
|
||||
ch := make(chan any)
|
||||
|
||||
go func() {
|
||||
|
|
Loading…
Reference in a new issue