mirror of
https://github.com/ollama/ollama.git
synced 2025-03-22 07:42:49 +01:00
16 lines
211 B
Go
16 lines
211 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/ollama/ollama/llama/runner"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
if err := runner.Execute(os.Args[1:]); err != nil {
|
||
|
fmt.Fprintf(os.Stderr, "error: %s\n", err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|