riteshraut
commited on
Commit
·
2c5dd57
1
Parent(s):
a743656
fix/final try
Browse files
app.py
CHANGED
|
@@ -49,7 +49,7 @@ doc_stores = {} # To hold the InMemoryStore for each session
|
|
| 49 |
print("Loading embedding model...")
|
| 50 |
try:
|
| 51 |
EMBEDDING_MODEL = HuggingFaceEmbeddings(
|
| 52 |
-
model_name="
|
| 53 |
model_kwargs={'device': 'cpu'}
|
| 54 |
)
|
| 55 |
print("Embedding model loaded successfully.")
|
|
|
|
| 49 |
print("Loading embedding model...")
|
| 50 |
try:
|
| 51 |
EMBEDDING_MODEL = HuggingFaceEmbeddings(
|
| 52 |
+
model_name="google/embeddinggemma-300m",
|
| 53 |
model_kwargs={'device': 'cpu'}
|
| 54 |
)
|
| 55 |
print("Embedding model loaded successfully.")
|