stable-diffusion-ai commited on
Commit
60579f8
1 Parent(s): f175d4f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -19
app.py CHANGED
@@ -159,27 +159,9 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
159
  #repetition_penalty = gr.Slider( minimum=0.1, maximum=3.0, value=1.03, step=0.01, interactive=True, label="Repetition Penalty", )
160
  chat_counter = gr.Number(value=0, visible=False, precision=0)
161
 
162
- with gr.Column(elem_id = "user_consent_container") as user_consent_block:
163
- # Get user consent
164
- accept_checkbox = gr.Checkbox(visible=False)
165
- js = "(x) => confirm('By clicking \"OK\", I agree that my data may be published or shared.')"
166
- with gr.Accordion("User Consent for Data Collection, Use, and Sharing", open=True):
167
- gr.HTML("""
168
- <div>
169
- <p>By using our app, which is powered by OpenAI's API, you acknowledge and agree to the following terms regarding the data you provide:</p>
170
- <ol>
171
- <li><strong>Collection:</strong> We may collect information, including the inputs you type into our app, the outputs generated by OpenAI's API, and certain technical details about your device and connection (such as browser type, operating system, and IP address) provided by your device's request headers.</li>
172
- <li><strong>Use:</strong> We may use the collected data for research purposes, to improve our services, and to develop new products or services, including commercial applications, and for security purposes, such as protecting against unauthorized access and attacks.</li>
173
- <li><strong>Sharing and Publication:</strong> Your data, including the technical details collected from your device's request headers, may be published, shared with third parties, or used for analysis and reporting purposes.</li>
174
- <li><strong>Data Retention:</strong> We may retain your data, including the technical details collected from your device's request headers, for as long as necessary.</li>
175
- </ol>
176
- <p>By continuing to use our app, you provide your explicit consent to the collection, use, and potential sharing of your data as described above. If you do not agree with our data collection, use, and sharing practices, please do not use our app.</p>
177
- </div>
178
- """)
179
- accept_button = gr.Button("I Agree")
180
 
181
  def enable_inputs():
182
- return user_consent_block.update(visible=False), main_block.update(visible=True)
183
 
184
  accept_button.click(None, None, accept_checkbox, queue=False)
185
  accept_checkbox.change(fn=enable_inputs, inputs=[], outputs=[user_consent_block, main_block], queue=False)
 
159
  #repetition_penalty = gr.Slider( minimum=0.1, maximum=3.0, value=1.03, step=0.01, interactive=True, label="Repetition Penalty", )
160
  chat_counter = gr.Number(value=0, visible=False, precision=0)
161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
 
163
  def enable_inputs():
164
+ return main_block.update(visible=True)
165
 
166
  accept_button.click(None, None, accept_checkbox, queue=False)
167
  accept_checkbox.change(fn=enable_inputs, inputs=[], outputs=[user_consent_block, main_block], queue=False)