mirror of
https://github.com/likelovewant/ollama-for-amd.git
synced 2025-12-22 14:53:56 +00: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)
|
|
}
|
|
}
|