We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e77b014 commit 33376e8Copy full SHA for 33376e8
backend/scripts/simple_eval.py
@@ -14,7 +14,9 @@
14
openai_tools = []
15
16
if CONFIG.vector_store_id is not None:
17
- openai_tools.append({"type": "file_search", "vector_store_ids": [CONFIG.vector_store_id]})
+ openai_tools.append(
18
+ {"type": "file_search", "vector_store_ids": [CONFIG.vector_store_id]}
19
+ )
20
21
# 1. Load the dataset - updated to use path relative to this script
22
script_dir = os.path.dirname(os.path.abspath(__file__))
0 commit comments