2023-12-27 00:03:45 +00:00
|
|
|
//go:build !windows && !darwin
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-08-01 21:52:15 +00:00
|
|
|
"errors"
|
2023-12-27 00:03:45 +00:00
|
|
|
|
2024-03-26 20:04:17 +00:00
|
|
|
"github.com/ollama/ollama/api"
|
2023-12-27 00:03:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func startApp(ctx context.Context, client *api.Client) error {
|
2024-08-01 21:52:15 +00:00
|
|
|
return errors.New("could not connect to ollama server, run 'ollama serve' to start it")
|
2023-12-27 00:03:45 +00:00
|
|
|
}
|