start_default.go 265 Bytes
Newer Older
mashun1's avatar
v1  
mashun1 committed
1
2
3
4
5
6
//go:build !windows && !darwin

package cmd

import (
	"context"
xuxzh1's avatar
init  
xuxzh1 committed
7
	"errors"
mashun1's avatar
v1  
mashun1 committed
8
9
10
11
12

	"github.com/ollama/ollama/api"
)

func startApp(ctx context.Context, client *api.Client) error {
xuxzh1's avatar
init  
xuxzh1 committed
13
	return errors.New("could not connect to ollama server, run 'ollama serve' to start it")
mashun1's avatar
v1  
mashun1 committed
14
}