Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -97,9 +97,9 @@ def explore(
|
|
97 |
print(f"Processing query: {query}")
|
98 |
print(f"Parameters: {json.dumps(exploration_parameters, indent=2)}")
|
99 |
|
100 |
-
# Generate exploration path
|
101 |
result = generator.generate_exploration_path(
|
102 |
-
|
103 |
selected_path=selected_path,
|
104 |
exploration_parameters=exploration_parameters
|
105 |
)
|
|
|
97 |
print(f"Processing query: {query}")
|
98 |
print(f"Parameters: {json.dumps(exploration_parameters, indent=2)}")
|
99 |
|
100 |
+
# Generate exploration path - FIXED HERE: changed user_query to query
|
101 |
result = generator.generate_exploration_path(
|
102 |
+
query=query, # Changed from user_query to query
|
103 |
selected_path=selected_path,
|
104 |
exploration_parameters=exploration_parameters
|
105 |
)
|