mirror of
https://github.com/cloudstack-llc/ollama.git
synced 2026-07-18 12:34:41 -04:00
1775647f76
feed responses back into the llm
12 lines
140 B
Go
12 lines
140 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jmorganca/ollama/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.NewCLI().ExecuteContext(context.Background())
|
|
}
|