annikwag commited on
Commit
9d9ace2
·
verified ·
1 Parent(s): d845358

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -5,6 +5,8 @@ from appStore.prep_utils import create_documents, get_client
5
  from appStore.embed import hybrid_embed_chunks
6
  from appStore.search import hybrid_search
7
  from torch import cuda
 
 
8
  # get the device to be used eithe gpu or cpu
9
  device = 'cuda' if cuda.is_available() else 'cpu'
10
 
 
5
  from appStore.embed import hybrid_embed_chunks
6
  from appStore.search import hybrid_search
7
  from torch import cuda
8
+ import json
9
+
10
  # get the device to be used eithe gpu or cpu
11
  device = 'cuda' if cuda.is_available() else 'cpu'
12