Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ def generate_response(prompt):
|
|
65 |
)
|
66 |
|
67 |
# Call the get_movie_info function to enrich the response
|
68 |
-
movie_info
|
69 |
|
70 |
# Concatenate the movie info with the input template
|
71 |
input_text_template += f" Movie Info: {movie_info}"
|
|
|
65 |
)
|
66 |
|
67 |
# Call the get_movie_info function to enrich the response
|
68 |
+
movie_info = get_movie_info(prompt)
|
69 |
|
70 |
# Concatenate the movie info with the input template
|
71 |
input_text_template += f" Movie Info: {movie_info}"
|