Skip to content

Commit

Permalink
talk-llama : increase context to 2048
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Apr 10, 2023
1 parent ea36831 commit 114df38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/talk-llama/talk-llama.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ int main(int argc, char ** argv) {
auto lparams = llama_context_default_params();

// tune these to your liking
lparams.n_ctx = 512;
lparams.n_ctx = 2048;
lparams.seed = 1;
lparams.f16_kv = true;
lparams.n_parts = params.n_parts_llama;
Expand Down

0 comments on commit 114df38

Please sign in to comment.