Update ingest.py

pull/530/head
Robbie Walmsley 8 months ago committed by GitHub
parent e95bc82b8e
commit 340647cb22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -78,14 +78,12 @@ def ingest(yes: bool = typer.Option(False, "-y", "--yes", prompt=False,
# Here we check for command line arguments for bot calls.
# If no argument exists or the yes is not True, then the
# user permission is requested to call the API.
if len(sys.argv) > 1:
if yes:
call_openai_api(docs, folder_name)
else:
get_user_permission(docs, folder_name)
if len(sys.argv) > 1 and yes:
call_openai_api(docs, folder_name)
else:
get_user_permission(docs, folder_name)
folder_counts = defaultdict(int)
folder_names = []
for dir_path in dir:

Loading…
Cancel
Save