Zasha1 commited on
Commit
e99ed09
·
verified ·
1 Parent(s): 2e87ddf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -15,8 +15,9 @@ from io import BytesIO
15
  import wave
16
 
17
  # Initialize components
18
- product_recommender = ProductRecommender(r"C:\Users\shaik\Downloads\Sales Calls Transcriptions - Sheet2.csv")
19
- objection_handler = ObjectionHandler(r"C:\Users\shaik\Downloads\Sales Calls Transcriptions - Sheet3.csv")
 
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):