Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,9 +46,9 @@ class LLM_Langchain():
|
|
46 |
self.max_new_tokens = st.sidebar.slider(
|
47 |
label="Token Length",
|
48 |
min_value=32,
|
49 |
-
max_value=
|
50 |
-
step=
|
51 |
-
value=
|
52 |
help="Set the max tokens to get accurate results"
|
53 |
)
|
54 |
|
|
|
46 |
self.max_new_tokens = st.sidebar.slider(
|
47 |
label="Token Length",
|
48 |
min_value=32,
|
49 |
+
max_value=250,
|
50 |
+
step=1,
|
51 |
+
value=32,
|
52 |
help="Set the max tokens to get accurate results"
|
53 |
)
|
54 |
|