Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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+
|
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
|