KShivendu commited on
Commit
362a13a
1 Parent(s): 7c4ccee

fix: Qdrant in memory

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ from main 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(":memory"), 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(":memory:"), TextEmbedding())
16
 
17
 
18
  def run_ocr(img_path) -> str: