Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -148,9 +148,15 @@ def process_input_gradio(problem_description: str):
|
|
148 |
# Step 8: Get Technologies by ID
|
149 |
best_technologies = get_technologies_by_id(best_technologies_id, global_tech)
|
150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
# Format outputs for Gradio
|
152 |
# For Constraints:
|
153 |
-
constraints_html = format_constraints_html(
|
154 |
|
155 |
# For Best Combinations:
|
156 |
best_combinations_html = format_best_combinations_html(best_combinations)
|
|
|
148 |
# Step 8: Get Technologies by ID
|
149 |
best_technologies = get_technologies_by_id(best_technologies_id, global_tech)
|
150 |
|
151 |
+
print(constraints)
|
152 |
+
|
153 |
+
print(best_combinations)
|
154 |
+
|
155 |
+
print(best_technologies)
|
156 |
+
|
157 |
# Format outputs for Gradio
|
158 |
# For Constraints:
|
159 |
+
constraints_html = format_constraints_html(constraints)
|
160 |
|
161 |
# For Best Combinations:
|
162 |
best_combinations_html = format_best_combinations_html(best_combinations)
|