1775647f76
feed responses back into the llm
11 lines
140 B
Go
11 lines
140 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jmorganca/ollama/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.NewCLI().ExecuteContext(context.Background())
|
|
}
|