Spaces:
Sleeping
Sleeping
changed to 300
Browse files
app.py
CHANGED
|
@@ -36,7 +36,7 @@ with st.sidebar:
|
|
| 36 |
model_choice = st.selectbox("LLM Model",
|
| 37 |
[model_name],
|
| 38 |
help="Choose the core analysis engine")
|
| 39 |
-
chunk_size = st.slider("Document Chunk Size",
|
| 40 |
rerank_threshold = st.slider("Re-ranking Threshold", 0.0, 1.0, 0.1)
|
| 41 |
|
| 42 |
# File Upload Handling for multiple files
|
|
|
|
| 36 |
model_choice = st.selectbox("LLM Model",
|
| 37 |
[model_name],
|
| 38 |
help="Choose the core analysis engine")
|
| 39 |
+
chunk_size = st.slider("Document Chunk Size", 300, 2000, 1000)
|
| 40 |
rerank_threshold = st.slider("Re-ranking Threshold", 0.0, 1.0, 0.1)
|
| 41 |
|
| 42 |
# File Upload Handling for multiple files
|