|
@@ -7,17 +7,17 @@ import (
|
|
"log/slog"
|
|
"log/slog"
|
|
"reflect"
|
|
"reflect"
|
|
"runtime"
|
|
"runtime"
|
|
|
|
+ "slices"
|
|
"sort"
|
|
"sort"
|
|
"strings"
|
|
"strings"
|
|
"sync"
|
|
"sync"
|
|
"time"
|
|
"time"
|
|
|
|
|
|
"github.com/ollama/ollama/api"
|
|
"github.com/ollama/ollama/api"
|
|
|
|
+ "github.com/ollama/ollama/envconfig"
|
|
"github.com/ollama/ollama/format"
|
|
"github.com/ollama/ollama/format"
|
|
"github.com/ollama/ollama/gpu"
|
|
"github.com/ollama/ollama/gpu"
|
|
"github.com/ollama/ollama/llm"
|
|
"github.com/ollama/ollama/llm"
|
|
- "github.com/ollama/ollama/envconfig"
|
|
|
|
- "golang.org/x/exp/slices"
|
|
|
|
)
|
|
)
|
|
|
|
|
|
type LlmRequest struct {
|
|
type LlmRequest struct {
|