mirror of
https://github.com/dogkeeper886/ollama37.git
synced 2025-12-11 16:26:59 +00:00
fix num_keep
This commit is contained in:
@@ -117,12 +117,13 @@ func load(ctx context.Context, model *Model, reqOpts map[string]interface{}, ses
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
tokensNoSystem, err := llmModel.Encode(ctx, promptNoSystem)
|
tokensNoSystem, err := llmModel.Encode(ctx, promptNoSystem)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
opts.NumKeep = len(tokensWithSystem) - len(tokensNoSystem) + 1
|
opts.NumKeep = len(tokensWithSystem) - len(tokensNoSystem)
|
||||||
|
|
||||||
llmModel.SetOptions(opts)
|
llmModel.SetOptions(opts)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user