Update app.py
Browse files
app.py
CHANGED
|
@@ -118,7 +118,7 @@ def recommend_movies(api_key, user_query):
|
|
| 118 |
return f"Missing required columns in CSV: {', '.join(missing_columns)}"
|
| 119 |
|
| 120 |
# Generate recommendations
|
| 121 |
-
recommendations =
|
| 122 |
return recommendations
|
| 123 |
|
| 124 |
# Create Gradio interface
|
|
|
|
| 118 |
return f"Missing required columns in CSV: {', '.join(missing_columns)}"
|
| 119 |
|
| 120 |
# Generate recommendations
|
| 121 |
+
recommendations = generate_movies_recommendations(api_key, user_query, df)
|
| 122 |
return recommendations
|
| 123 |
|
| 124 |
# Create Gradio interface
|