fix parameter type
This commit is contained in:
parent
f1710b90dc
commit
aa2bbb2d35
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ struct llama_server_context
|
||||||
n_consumed = 0;
|
n_consumed = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool loadModel(gpt_params params_)
|
bool loadModel(const gpt_params ¶ms_)
|
||||||
{
|
{
|
||||||
params = params_;
|
params = params_;
|
||||||
ctx = llama_init_from_gpt_params(params);
|
ctx = llama_init_from_gpt_params(params);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue