Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
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 |
|