Spaces:
Running
Running
Removed doc check
Browse files
app.py
CHANGED
@@ -37,7 +37,8 @@ def do_ask(question, button, openapi, dataset, slider, progress=gr.Progress()):
|
|
37 |
key = None
|
38 |
if ',' not in row['citation string']:
|
39 |
key = row['citation string']
|
40 |
-
docs.add(row['filepath'], row['citation string'],
|
|
|
41 |
else:
|
42 |
return "", "", ""
|
43 |
progress(0, "Building Index...")
|
|
|
37 |
key = None
|
38 |
if ',' not in row['citation string']:
|
39 |
key = row['citation string']
|
40 |
+
docs.add(row['filepath'], row['citation string'],
|
41 |
+
key=key, disable_check=True)
|
42 |
else:
|
43 |
return "", "", ""
|
44 |
progress(0, "Building Index...")
|