Skip to content

Add truncation warning #169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions webui/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,14 @@ def set_truncation(idx, trunc):
else: self.history[idx].truncate = trunc

def truncate(idx, trunc):
if idx == -1 and not self.fixed_prompt.empty: self.fixed_prompt.truncate += trunc
else: self.history[idx].truncate += trunc
if idx == -1 and not self.fixed_prompt.empty:
self.fixed_prompt.truncate += trunc
if self.fixed_prompt.truncate > 0:
print("Warning: Fixed prompt is being truncated!")
else:
self.history[idx].truncate += trunc
if self.history[idx].truncate > 0:
print(f"Warning: History entry {idx} is being truncated!")

# def get_truncation(idx, trunc):
# if idx == -1 and not self.fixed_prompt.empty: return self.fixed_prompt.truncate
Expand Down