Update app.py
Browse files
app.py
CHANGED
@@ -386,7 +386,7 @@ EXAMPLE_PROMPTS = [
|
|
386 |
|
387 |
# Helper function to format dropdown choices with icons
|
388 |
def format_dropdown_choices(options_dict):
|
389 |
-
return [f"{
|
390 |
|
391 |
# Helper function to extract the key from formatted choice
|
392 |
def extract_key(formatted_choice):
|
|
|
386 |
|
387 |
# Helper function to format dropdown choices with icons
|
388 |
def format_dropdown_choices(options_dict):
|
389 |
+
return [f"{options_dict[key].get('icon', '•')} {key}" for key in options_dict.keys()]
|
390 |
|
391 |
# Helper function to extract the key from formatted choice
|
392 |
def extract_key(formatted_choice):
|