yjernite HF Staff commited on
Commit
d6d8868
Β·
verified Β·
1 Parent(s): 2a236ed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -491,7 +491,11 @@ DESCRIPTION = """
491
  In most cases, the code for these demos is open source — which provides a unique opportunity to **examine how privacy and data transfers are managed**.
492
 
493
  This demo leverages a code analysis model ([Qwen2.5-Coder-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct)) to help explore privacy questions in two steps:
494
- 1. Obtain and **parse the code** of a Space to identify data inputs, AI model use, API calls, and data transfer behavior.
 
 
 
 
495
  2. Generate a summary of the Space's function and highlight **key privacy points**.
496
 
497
  Use the dropdown menu below to explore the [reports generated for some popular Spaces](https://huggingface.co/datasets/yjernite/spaces-privacy-reports/tree/main), or enter a new Space ID to query your own πŸ‘‡
@@ -507,7 +511,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
507
  with gr.Row():
508
  with gr.Column(scale=1): # Left column for inputs
509
  description_accordion = gr.Accordion(
510
- "What Privacy Questions do πŸ€— Spaces Raise? Demo Description πŸ‘‡", open=False, visible=True
511
  )
512
  with description_accordion:
513
  gr.Markdown(DESCRIPTION)
 
491
  In most cases, the code for these demos is open source — which provides a unique opportunity to **examine how privacy and data transfers are managed**.
492
 
493
  This demo leverages a code analysis model ([Qwen2.5-Coder-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct)) to help explore privacy questions in two steps:
494
+ 1. Obtain and **parse the code** of a Space to identify:
495
+ - data inputs,
496
+ - AI model use,
497
+ - API calls,
498
+ - data transfers.
499
  2. Generate a summary of the Space's function and highlight **key privacy points**.
500
 
501
  Use the dropdown menu below to explore the [reports generated for some popular Spaces](https://huggingface.co/datasets/yjernite/spaces-privacy-reports/tree/main), or enter a new Space ID to query your own πŸ‘‡
 
511
  with gr.Row():
512
  with gr.Column(scale=1): # Left column for inputs
513
  description_accordion = gr.Accordion(
514
+ "What Privacy Questions do πŸ€— Spaces Raise? Click here for Demo Description πŸ‘‡", open=False, visible=True
515
  )
516
  with description_accordion:
517
  gr.Markdown(DESCRIPTION)