We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 995a62c commit 4a51874Copy full SHA for 4a51874
ChatQnA/benchmark/README.md
@@ -163,10 +163,15 @@ Run the cURL command to upload file:
163
164
```bash
165
cd GenAIEval/evals/benchmark/data
166
+# RAG with Rerank
167
curl -X POST "http://${cluster_ip}:6007/v1/dataprep" \
168
-H "Content-Type: multipart/form-data" \
169
-F "files=@./upload_file.txt" \
170
-F "chunk_size=3800"
171
+# RAG without Rerank
172
+curl -X POST "http://${cluster_ip}:6007/v1/dataprep" \
173
+ -H "Content-Type: multipart/form-data" \
174
+ -F "files=@./upload_file_no_rerank.txt"
175
```
176
177
##### 3.2 Run Benchmark Test
0 commit comments