Skip to content

Commit

Permalink
Merge pull request #6203 from oobabooga/dev
Browse files Browse the repository at this point in the history
Merge dev branch
  • Loading branch information
oobabooga authored Jul 5, 2024
2 parents 3315d00 + aa653e3 commit e813b32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def find_all_histories_with_first_prompts(state):
data = json.load(f)

first_prompt = ""
if 'visible' in data and len(data['visible']) > 0:
if data and 'visible' in data and len(data['visible']) > 0:
if data['internal'][0][0] == '<|BEGIN-VISIBLE-CHAT|>':
if len(data['visible']) > 1:
first_prompt = html.unescape(data['visible'][1][0])
Expand Down
7 changes: 6 additions & 1 deletion modules/llama_cpp_python_hijack.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,11 @@ def eval_with_progress(self, tokens: Sequence[int]):


def monkey_patch_llama_cpp_python(lib):
if getattr(lib.Llama, '_is_patched', False):
# If the patch is already applied, do nothing
return

def my_generate(self, *args, **kwargs):

if shared.args.streaming_llm:
new_sequence = args[0]
past_sequence = self._input_ids
Expand All @@ -116,3 +118,6 @@ def my_generate(self, *args, **kwargs):
lib.Llama.eval = eval_with_progress
lib.Llama.original_generate = lib.Llama.generate
lib.Llama.generate = my_generate

# Set the flag to indicate that the patch has been applied
lib.Llama._is_patched = True

0 comments on commit e813b32

Please sign in to comment.