"configs/datasets/mbpp/mbpp_gen_5d6316.py" did not exist on "2c71b0f6f39a060c1d826fbeb624bac3e1dafbdd"
start_default.go 262 Bytes
Newer Older
1
2
3
4
5
6
7
8
//go:build !windows && !darwin

package cmd

import (
	"context"
	"fmt"

9
	"github.com/ollama/ollama/api"
10
11
12
13
14
)

func startApp(ctx context.Context, client *api.Client) error {
	return fmt.Errorf("could not connect to ollama server, run 'ollama serve' to start it")
}