Format
This commit is contained in:
parent
6bd1075291
commit
8fa2ef1959
1 changed files with 1 additions and 3 deletions
|
@ -696,9 +696,7 @@ class Llama:
|
|||
llama_cpp.llama_reset_timings(self.ctx)
|
||||
|
||||
if len(prompt_tokens) + max_tokens > self._n_ctx:
|
||||
raise ValueError(
|
||||
f"Requested tokens exceed context window of {self._n_ctx}"
|
||||
)
|
||||
raise ValueError(f"Requested tokens exceed context window of {self._n_ctx}")
|
||||
|
||||
if stop != []:
|
||||
stop_sequences = [s.encode("utf-8") for s in stop]
|
||||
|
|
Loading…
Reference in a new issue