KShivendu commited on
Commit
c21b274
1 Parent(s): 8192ab6

fix: Use path arg

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ from engine import RecommendationEngine
12
 
13
  ocr = PaddleOCR(use_angle_cls=True, lang="en", use_gpu=False)
14
  llm = OpenAI(model="gpt-3.5-turbo")
15
- rec_engine = RecommendationEngine("food", QdrantClient("qdrant-rec-sys-data"), TextEmbedding())
16
 
17
 
18
  def run_ocr(img_path) -> str:
 
12
 
13
  ocr = PaddleOCR(use_angle_cls=True, lang="en", use_gpu=False)
14
  llm = OpenAI(model="gpt-3.5-turbo")
15
+ rec_engine = RecommendationEngine("food", QdrantClient(path="qdrant-rec-sys-data"), TextEmbedding())
16
 
17
 
18
  def run_ocr(img_path) -> str: