Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -42,9 +42,9 @@ def update_direct_steering_options(prompt_type):
|
|
42 |
}
|
43 |
|
44 |
#direct_steering_option.update(choices=options.get(prompt_type, []))
|
45 |
-
|
46 |
-
return gr.Dropdown(choices=
|
47 |
-
#return options.get(prompt_type, [])
|
48 |
|
49 |
def main():
|
50 |
description = "This is a simple interface to compare two model prodided by Anyscale. Please enter your API key and your message."
|
|
|
42 |
}
|
43 |
|
44 |
#direct_steering_option.update(choices=options.get(prompt_type, []))
|
45 |
+
choices = options.get(prompt_type, [])
|
46 |
+
return gr.Dropdown(choices=choices, interactive=True)
|
47 |
+
#return options.get(prompt_type, [])
|
48 |
|
49 |
def main():
|
50 |
description = "This is a simple interface to compare two model prodided by Anyscale. Please enter your API key and your message."
|