replace x/exp/slices with slices

This commit is contained in:
Michael Yang 2024-05-21 21:30:52 -07:00
parent 60323e0805
commit 04f3c12bb7
6 changed files with 7 additions and 8 deletions

View file

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