Spaces:
Runtime error
Runtime error
updated gradio
Browse files
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
|
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 |
-
|
|
|
19 |
except Exception as err:
|
20 |
return(f"⛔ Query failed!\n{err}")
|
21 |
|
22 |
-
with gr.Blocks(
|
23 |
-
gr.Markdown("<h1
|
24 |
-
|
25 |
-
gr.Markdown("<p>
|
26 |
-
gr.Markdown("<p
|
27 |
-
gr.Markdown("<p>You can see how we deployed the model
|
28 |
-
gr.
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
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 |
-
|
41 |
-
with gr.Column():
|
42 |
-
trigger = gr.Button("Test query")
|
43 |
with gr.Column():
|
44 |
-
output = gr.Textbox(placeholder="Output", label="
|
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()
|