HookBeforeAppDelegate commited on
Commit
5f52d2c
·
verified ·
1 Parent(s): 379a33b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -24
app.py CHANGED
@@ -156,30 +156,30 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
156
  #repetition_penalty = gr.Slider( minimum=0.1, maximum=3.0, value=1.03, step=0.01, interactive=True, label="Repetition Penalty", )
157
  chat_counter = gr.Number(value=0, visible=False, precision=0)
158
 
159
- with gr.Column(elem_id = "user_consent_container") as user_consent_block:
160
- # Get user consent
161
- accept_checkbox = gr.Checkbox(visible=False)
162
- js = "(x) => confirm('By clicking \"OK\", I agree that my data may be published or shared.')"
163
- with gr.Accordion("User Consent for Data Collection, Use, and Sharing", open=True):
164
- gr.HTML("""
165
- <div>
166
- <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>
167
- <ol>
168
- <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>
169
- <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>
170
- <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>
171
- <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>
172
- </ol>
173
- <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>
174
- </div>
175
- """)
176
- accept_button = gr.Button("I Agree")
177
-
178
- def enable_inputs():
179
- return gr.update(visible=False), gr.update(visible=True)
180
-
181
- accept_button.click(None, None, accept_checkbox, js=js, queue=False)
182
- accept_checkbox.change(fn=enable_inputs, inputs=[], outputs=[ main_block], queue=False)
183
 
184
  inputs.submit(reset_textbox, [], [inputs, b1], queue=False)
185
  inputs.submit(predict, [inputs, top_p, temperature, chat_counter, chatbot, state], [chatbot, state, chat_counter, server_status_code, inputs, b1],) #openai_api_key
@@ -187,3 +187,4 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
187
  b1.click(predict, [inputs, top_p, temperature, chat_counter, chatbot, state], [chatbot, state, chat_counter, server_status_code, inputs, b1],) #openai_api_key
188
 
189
  demo.queue(max_size=10, default_concurrency_limit=NUM_THREADS, api_open=False).launch(share=False)
 
 
156
  #repetition_penalty = gr.Slider( minimum=0.1, maximum=3.0, value=1.03, step=0.01, interactive=True, label="Repetition Penalty", )
157
  chat_counter = gr.Number(value=0, visible=False, precision=0)
158
 
159
+ # with gr.Column(elem_id = "user_consent_container") as user_consent_block:
160
+ # # Get user consent
161
+ # accept_checkbox = gr.Checkbox(visible=False)
162
+ # js = "(x) => confirm('By clicking \"OK\", I agree that my data may be published or shared.')"
163
+ # with gr.Accordion("User Consent for Data Collection, Use, and Sharing", open=True):
164
+ # gr.HTML("""
165
+ # <div>
166
+ # <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>
167
+ # <ol>
168
+ # <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>
169
+ # <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>
170
+ # <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>
171
+ # <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>
172
+ # </ol>
173
+ # <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>
174
+ # </div>
175
+ # """)
176
+ # accept_button = gr.Button("I Agree")
177
+
178
+ # def enable_inputs():
179
+ # return gr.update(visible=False), gr.update(visible=True)
180
+ #
181
+ # accept_button.click(None, None, accept_checkbox, js=js, queue=False)
182
+ # accept_checkbox.change(fn=enable_inputs, inputs=[], outputs=[user_consent_block, main_block], queue=False)
183
 
184
  inputs.submit(reset_textbox, [], [inputs, b1], queue=False)
185
  inputs.submit(predict, [inputs, top_p, temperature, chat_counter, chatbot, state], [chatbot, state, chat_counter, server_status_code, inputs, b1],) #openai_api_key
 
187
  b1.click(predict, [inputs, top_p, temperature, chat_counter, chatbot, state], [chatbot, state, chat_counter, server_status_code, inputs, b1],) #openai_api_key
188
 
189
  demo.queue(max_size=10, default_concurrency_limit=NUM_THREADS, api_open=False).launch(share=False)
190
+