Skip to content

Commit

Permalink
Enlarge default window size to 32K
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jun 8, 2024
1 parent 3bfd61f commit d59a644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r2ai/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def __init__(self):
self.env["debug"] = "false"
self.env["llm.model"] = self.model ## TODO: dup. must get rid of self.model
self.env["llm.gpu"] = "true"
self.env["llm.window"] = "8096" # "4096" # context_window
self.env["llm.window"] = "32768" # "4096" # context_window
self.env["llm.maxtokens"] = "4096" # "1750"
self.env["llm.maxmsglen"] = "8096" # "1750"
self.env["llm.temperature"] = "0.002"
Expand Down

0 comments on commit d59a644

Please sign in to comment.