DjPapzin commited on
Commit
9798fe7
1 Parent(s): b4bc83d

Update app.py to fix dataset loading issue

Browse files

Removed the org_id parameter from the load_db function call in app.py to resolve the "org_id parameter can only be used with local datasets" error.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def init():
40
  dataset_path,
41
  embedding_function=embeddings,
42
  token=os.environ["ACTIVELOOP_TOKEN"],
43
- org_id=os.environ["ACTIVELOOP_ORG_ID"],
44
  read_only=True,
45
  )
46
 
 
40
  dataset_path,
41
  embedding_function=embeddings,
42
  token=os.environ["ACTIVELOOP_TOKEN"],
43
+ # org_id=os.environ["ACTIVELOOP_ORG_ID"],
44
  read_only=True,
45
  )
46