lauro1 commited on
Commit
b298f05
·
1 Parent(s): 7f9ca3b

updated gradio

Browse files
Files changed (1) hide show
  1. app.py +21 -27
app.py CHANGED
@@ -4,45 +4,39 @@ from blindbox.requests import SecureSession
4
  DEMO_SERVER = "4.208.9.167:80"
5
 
6
  def run_query( server, prompt):
7
- if prompt == None or server == None:
8
- return("⛔ Error: please select an option for stages 1 and 2")
9
- if len(prompt) == 0 or len(server) == 0:
10
- return("⛔ Error: please select an option for stages 1-3")
11
- if server != "Authentic and verified confidential VM server":
12
  return ("⛔ Error: you can only connect to an application running on a Confidential VM")
13
  POLICY = "./cce_policy.txt"
 
 
14
  try:
15
  with SecureSession(f"http://{DEMO_SERVER}", POLICY) as secure_session:
16
  res = secure_session.post(endpoint="/generate", json={"input_text": prompt})
17
  cleaned = res.text.replace('\\n', '\n').split('\n\n')[0].split(':"')[1]
18
- return("✅ Query successful\n" + cleaned)
 
19
  except Exception as err:
20
  return(f"⛔ Query failed!\n{err}")
21
 
22
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
23
- gr.Markdown("<h1><center>🔒Confidential code generation with BlindBox and Santacoder</center></h1>")
24
- gr.Markdown("<p>This is the demo for our article on deploying code generation LLM models with BlindBox: <b>AI-assisted code generation with privacy guarantees: Securely deploy SantaCoder with BlindBox</b><br>You can view the article <a href='https://blog-mithril-security.ghost.io/ai-assisted-code-generation-with-privacy-guarantees-securely-deploy-santacoder-with-blindbox'>here!</a></p>")
25
- gr.Markdown("<p>You can use this demo to send a function definition to BigCode's open-source Santacoder model and get back an auto-completed function.</p>")
26
- gr.Markdown("<p>The model is deployed within a highly-isolated Trusted Execution Environment, meaning that we, as the service provider, have no access to the data sent to this model!</p>")
27
- gr.Markdown("<p>You can see how we deployed the model by checking out the integration section of our <a href='https://blindbox.mithrilsecurity.io/en/latest/docs/how-to-guides/santacoder/'>documentation!</p>")
28
- gr.Markdown("><h3>Step 1: Check that we are connecting to an authentic confidential VM")
29
- gr.Markdown("<p>This first option allows you to choose whether to connect to the Santacoder application deployed with BlindBox on a verified confidential VM or the same application deployed on a dummy server which is not within a confidential VM. This demonstrates how BlindBox blocks requests to non-authentic confidential VMs!</p>")
30
- with gr.Column():
31
- server = gr.Radio(
32
- ["Authentic and verified confidential VM server", "Unauthentic dummy server"], label="Select the server you want to connect to"
33
- )
34
- gr.Markdown("><h3>Step 2: Select your prompt</h3>")
35
- gr.Markdown("<p>Select between the following prompt examples we provide.</p>")
36
- with gr.Column():
37
- prompt = gr.Radio(
38
- ["def sum(x, y):", "def print_name(name):", "def hello_world():", "def square_root(nbr):"], label="Select your user prompt"
39
  )
40
- gr.Markdown("><h3>Step 3: Query the Santacoder model</h3>")
41
- with gr.Column():
42
- trigger = gr.Button("Test query")
43
  with gr.Column():
44
- output = gr.Textbox(placeholder="Output", label="See the output of your query here")
45
  trigger.click(fn=run_query, inputs=[server, prompt], outputs=output)
 
46
 
47
  if __name__ == "__main__":
48
  demo.launch()
 
4
  DEMO_SERVER = "4.208.9.167:80"
5
 
6
  def run_query( server, prompt):
7
+ if server == "Non-confidential VM server":
 
 
 
 
8
  return ("⛔ Error: you can only connect to an application running on a Confidential VM")
9
  POLICY = "./cce_policy.txt"
10
+ if prompt == None:
11
+ return ("⛔ Error: please provide input code")
12
  try:
13
  with SecureSession(f"http://{DEMO_SERVER}", POLICY) as secure_session:
14
  res = secure_session.post(endpoint="/generate", json={"input_text": prompt})
15
  cleaned = res.text.replace('\\n', '\n').split('\n\n')[0].split(':"')[1]
16
+ cleaned = cleaned.replace('\\', '')
17
+ return(cleaned + "\n\n✅ Input is end-to-end protected\nUser data is protected by a highly isolated and secure environment during runtime, meaning we, as the service providers, cannot access your input!")
18
  except Exception as err:
19
  return(f"⛔ Query failed!\n{err}")
20
 
21
+ with gr.Blocks(css=".gradio-container {background-color: #20233fff}") as demo:
22
+ gr.Markdown("<h1 style='text-align: center; color: white;'>🎅 SantaCoder with <span style='color: #f0ba2d;'>BlindBox:</span> Private Code Generation </h1>")
23
+
24
+ gr.Markdown("<p style='text-align: center; color: white;'>This is our demo for our <a style='color: #f0ba2d;', href='https://blog-mithril-security.ghost.io/ai-assisted-code-generation-with-privacy-guarantees-securely-deploy-santacoder-with-blindbox'>article</a> on deploying code generation LLM models with BlindBox")
25
+ gr.Markdown("<p style='text-align: center; color: white;'>The user input is <span style='color: #f0ba2d;'>end-to-end protected</span> with the user prompt processed in a highly isolated and secure environment</p>")
26
+ gr.Markdown("<p style='text-align: center; color: white;'>You can see how we deployed the model in the integration section of our <a style='color: #f0ba2d;', href='https://blindbox.mithrilsecurity.io/en/latest/docs/how-to-guides/santacoder/'>documentation!</p>")
27
+ _, colum_2, _ = gr.Column(scale=1), gr.Column(scale=6), gr.Column(scale=1)
28
+ with colum_2:
29
+ prompt = gr.Code(lines=3, language="python", label="Input code", value="def hello_name(name):")
30
+
31
+ with gr.Accordion("Advanced settings", open=False):
32
+ server = gr.Radio(
33
+ ["Authentic confidential VM server", "Non-confidential VM server"], label="Test connections to secure and insecure servers"
 
 
 
 
34
  )
35
+ trigger = gr.Button(label="Run query")
 
 
36
  with gr.Column():
37
+ output = gr.Textbox(placeholder="Output", label="Output")
38
  trigger.click(fn=run_query, inputs=[server, prompt], outputs=output)
39
+ gr.HTML(label="Contact", value="<img src='https://github.com/mithril-security/blindbox/blob/main/docs/assets/logo.png?raw=true.png' alt='contact' style='display: block; margin: auto; max-width: 200px;'>")
40
 
41
  if __name__ == "__main__":
42
  demo.launch()