Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -31,23 +31,25 @@ def respond(message, system_message, max_tokens, temperature, top_p):
|
|
31 |
response += token
|
32 |
return response
|
33 |
|
34 |
-
|
|
|
35 |
system_message = (
|
36 |
-
"You are an expert
|
37 |
-
"
|
38 |
-
"
|
39 |
)
|
40 |
-
|
41 |
-
return
|
42 |
|
43 |
-
|
|
|
44 |
system_message = (
|
45 |
-
"You are an expert
|
46 |
-
"
|
47 |
-
"
|
48 |
)
|
49 |
-
|
50 |
-
return
|
51 |
|
52 |
# Custom CSS for the specified theme
|
53 |
custom_css = """
|
@@ -122,25 +124,21 @@ footer {
|
|
122 |
# Gradio Interface
|
123 |
with gr.Blocks(css=custom_css) as demo:
|
124 |
with gr.Column():
|
125 |
-
gr.Markdown("#
|
126 |
-
|
127 |
-
evidence = gr.Textbox(lines=3, placeholder="Enter evidence details here...", label="Evidence", elem_classes="label-hidden")
|
128 |
-
witness_statements = gr.Textbox(lines=3, placeholder="Enter witness statements here...", label="Witness Statements", elem_classes="label-hidden")
|
129 |
-
legal_references = gr.Textbox(lines=3, placeholder="Enter legal references here...", label="Legal References", elem_classes="label-hidden")
|
130 |
|
131 |
-
|
132 |
-
|
133 |
|
134 |
-
def
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
return prosecution_arg, defense_arg
|
139 |
|
140 |
-
|
141 |
-
|
142 |
|
143 |
clear_btn = gr.Button("Clear")
|
144 |
-
clear_btn.click(lambda: ("", "", ""
|
145 |
|
146 |
demo.launch()
|
|
|
31 |
response += token
|
32 |
return response
|
33 |
|
34 |
+
# GDPR Compliance Expert
|
35 |
+
def evaluate_gdpr_compliance(audit_data):
|
36 |
system_message = (
|
37 |
+
"You are an expert GDPR compliance officer. Assess the audit data for compliance with GDPR regulations. "
|
38 |
+
"Provide an analysis that identifies any compliance issues and suggestions for remediation. "
|
39 |
+
"Ensure a thorough evaluation of data processing, storage, and protection practices in line with GDPR requirements."
|
40 |
)
|
41 |
+
compliance_analysis = respond(audit_data, system_message, max_tokens=1024, temperature=0.7, top_p=0.95)
|
42 |
+
return compliance_analysis
|
43 |
|
44 |
+
# PCI Compliance Expert
|
45 |
+
def evaluate_pci_compliance(audit_data):
|
46 |
system_message = (
|
47 |
+
"You are an expert PCI compliance officer. Assess the audit data for compliance with PCI DSS regulations. "
|
48 |
+
"Provide an analysis that identifies any compliance issues and suggestions for remediation. "
|
49 |
+
"Ensure a thorough evaluation of payment card data security, storage, and processing practices in line with PCI requirements."
|
50 |
)
|
51 |
+
compliance_analysis = respond(audit_data, system_message, max_tokens=1024, temperature=0.7, top_p=0.95)
|
52 |
+
return compliance_analysis
|
53 |
|
54 |
# Custom CSS for the specified theme
|
55 |
custom_css = """
|
|
|
124 |
# Gradio Interface
|
125 |
with gr.Blocks(css=custom_css) as demo:
|
126 |
with gr.Column():
|
127 |
+
gr.Markdown("# GDPR and PCI Compliance Evaluation\n### Provide Audit Data for Compliance Check")
|
128 |
+
audit_data = gr.Textbox(lines=5, placeholder="Enter audit data here...", label="Audit Data", elem_classes="label-hidden")
|
|
|
|
|
|
|
129 |
|
130 |
+
gdpr_compliance = gr.Textbox(lines=10, placeholder="GDPR Compliance Analysis...", label="GDPR Compliance Analysis", elem_classes="label-hidden")
|
131 |
+
pci_compliance = gr.Textbox(lines=10, placeholder="PCI Compliance Analysis...", label="PCI Compliance Analysis", elem_classes="label-hidden")
|
132 |
|
133 |
+
def run_compliance_checks(audit_data):
|
134 |
+
gdpr_analysis = evaluate_gdpr_compliance(audit_data)
|
135 |
+
pci_analysis = evaluate_pci_compliance(audit_data)
|
136 |
+
return gdpr_analysis, pci_analysis
|
|
|
137 |
|
138 |
+
check_compliance_btn = gr.Button("Run Compliance Checks")
|
139 |
+
check_compliance_btn.click(run_compliance_checks, inputs=[audit_data], outputs=[gdpr_compliance, pci_compliance])
|
140 |
|
141 |
clear_btn = gr.Button("Clear")
|
142 |
+
clear_btn.click(lambda: ("", "", ""), None, [audit_data, gdpr_compliance, pci_compliance])
|
143 |
|
144 |
demo.launch()
|