Skip to content

Commit

Permalink
Improve message
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudotensor committed Oct 30, 2024
1 parent 35df517 commit a60e334
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openai_server/agent_tools/convert_document_to_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def main():
max_tokens = 1024
max_chars = max_tokens * 4
if len(output_text) > max_chars:
print("Head of the output:")
print(f"Head of the text (MUST use file {args.output} for full text):")
print(output_text[:max_chars])
else:
print(output_text)
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "616db9603cf7d7f547736bed116bd1bc56a082ad"
__version__ = "35df517ab58e7f1a5c2127ed70d78567c5635c0b"

0 comments on commit a60e334

Please sign in to comment.