jost commited on
Commit
069ea51
·
verified ·
1 Parent(s): bd648f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -94,6 +94,7 @@ def main():
94
  with gr.Tab("App"):
95
  with gr.Row():
96
  ideology_test = gr.Dropdown(
 
97
  label="Ideology Test",
98
  choices=["Wahl-O-Mat", "Political Compass Test"],
99
  value="Wahl-O-Mat", # Default value
@@ -103,6 +104,7 @@ def main():
103
  # Initialize 'political_statement' with default 'Wahl-O-Mat' values
104
  political_statement_initial_choices = [f"{i+1}. {statement['text']}" for i, statement in enumerate(wahl_o_mat_data['statements'])]
105
  political_statement = gr.Dropdown(
 
106
  label="Select political statement or enter you own",
107
  value="1. Auf allen Autobahnen soll ein generelles Tempolimit gelten.", # default value
108
  choices=political_statement_initial_choices, # Set default to 'Wahl-O-Mat' statements
@@ -151,7 +153,7 @@ def main():
151
  openai_api_key = gr.Textbox(label="OpenAI API Key", placeholder="Enter your OpenAI API key here", show_label=True, type="password")
152
  togetherai_api_key = gr.Textbox(label="Together.ai API Key", placeholder="Enter your Together.ai API key here", show_label=True, type="password")
153
 
154
- with gr.Row()
155
  temp_input = gr.Slider(minimum=0, maximum=1, step=0.01, label="Temperature", value=0.7)
156
  top_p_input = gr.Slider(minimum=0, maximum=1, step=0.01, label="Top P", value=1)
157
 
 
94
  with gr.Tab("App"):
95
  with gr.Row():
96
  ideology_test = gr.Dropdown(
97
+ scale=1,
98
  label="Ideology Test",
99
  choices=["Wahl-O-Mat", "Political Compass Test"],
100
  value="Wahl-O-Mat", # Default value
 
104
  # Initialize 'political_statement' with default 'Wahl-O-Mat' values
105
  political_statement_initial_choices = [f"{i+1}. {statement['text']}" for i, statement in enumerate(wahl_o_mat_data['statements'])]
106
  political_statement = gr.Dropdown(
107
+ scale=2,
108
  label="Select political statement or enter you own",
109
  value="1. Auf allen Autobahnen soll ein generelles Tempolimit gelten.", # default value
110
  choices=political_statement_initial_choices, # Set default to 'Wahl-O-Mat' statements
 
153
  openai_api_key = gr.Textbox(label="OpenAI API Key", placeholder="Enter your OpenAI API key here", show_label=True, type="password")
154
  togetherai_api_key = gr.Textbox(label="Together.ai API Key", placeholder="Enter your Together.ai API key here", show_label=True, type="password")
155
 
156
+ with gr.Row():
157
  temp_input = gr.Slider(minimum=0, maximum=1, step=0.01, label="Temperature", value=0.7)
158
  top_p_input = gr.Slider(minimum=0, maximum=1, step=0.01, label="Top P", value=1)
159