Update app.py
Browse files
app.py
CHANGED
@@ -15,8 +15,9 @@ from io import BytesIO
|
|
15 |
import wave
|
16 |
|
17 |
# Initialize components
|
18 |
-
|
19 |
-
|
|
|
20 |
model = SentenceTransformer('all-MiniLM-L6-v2')
|
21 |
|
22 |
def generate_comprehensive_summary(chunks):
|
|
|
15 |
import wave
|
16 |
|
17 |
# Initialize components
|
18 |
+
# Initialize components
|
19 |
+
product_recommender = ProductRecommender("recommendations.csv") # Relative path
|
20 |
+
objection_handler = ObjectionHandler("objections.csv") # Relative path
|
21 |
model = SentenceTransformer('all-MiniLM-L6-v2')
|
22 |
|
23 |
def generate_comprehensive_summary(chunks):
|