Jaykay73 commited on
Update ingest.py
Browse files- src/ingest.py +2 -2
src/ingest.py
CHANGED
|
@@ -3,7 +3,7 @@ import requests
|
|
| 3 |
import time
|
| 4 |
import faiss
|
| 5 |
from dotenv import load_dotenv
|
| 6 |
-
from recommender import MovieRecommender
|
| 7 |
|
| 8 |
load_dotenv()
|
| 9 |
API_KEY = os.getenv("TMDB_API_KEY")
|
|
@@ -141,4 +141,4 @@ def ingest_high_quality_movies(target_count=50, reset=False):
|
|
| 141 |
|
| 142 |
if __name__ == "__main__":
|
| 143 |
# Reset=True ensures we rebuild the old movies with the NEW metadata
|
| 144 |
-
ingest_high_quality_movies(target_count=500, reset=True)
|
|
|
|
| 3 |
import time
|
| 4 |
import faiss
|
| 5 |
from dotenv import load_dotenv
|
| 6 |
+
from src.recommender import MovieRecommender
|
| 7 |
|
| 8 |
load_dotenv()
|
| 9 |
API_KEY = os.getenv("TMDB_API_KEY")
|
|
|
|
| 141 |
|
| 142 |
if __name__ == "__main__":
|
| 143 |
# Reset=True ensures we rebuild the old movies with the NEW metadata
|
| 144 |
+
ingest_high_quality_movies(target_count=500, reset=True)
|