powolnik commited on
Commit
34af537
·
verified ·
1 Parent(s): 9c551fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -56,7 +56,7 @@ def x():
56
 
57
  def split_string(text: str) -> list[str]:
58
  """Helper function to split text into chunks"""
59
- return [text[i:i+3900] for i in range(0, len(text), 3900)]
60
 
61
  def generate(
62
  prompt, temperature=0.0, max_new_tokens=2048, top_p=0.95, repetition_penalty=1.0
 
56
 
57
  def split_string(text: str) -> list[str]:
58
  """Helper function to split text into chunks"""
59
+ return [text[i:i+1900] for i in range(0, len(text), 1900)]
60
 
61
  def generate(
62
  prompt, temperature=0.0, max_new_tokens=2048, top_p=0.95, repetition_penalty=1.0