tanveeshsingh commited on
Commit
a1d867b
·
1 Parent(s): 9171a9d
Files changed (1) hide show
  1. app.py +9 -4
app.py CHANGED
@@ -5,6 +5,10 @@ import openai
5
  API_ENDPOINT = "https://txl0ptjvttfogwt9.us-east-1.aws.endpoints.huggingface.cloud/v1/"
6
  API_KEY = "NA"
7
 
 
 
 
 
8
  def classify_prompt(conv_prefix, response):
9
  template_str = """
10
  Please review the scoring criteria:
@@ -47,7 +51,8 @@ Now, please output the following as a JSON object:
47
  def process_inputs(conv_prefix, response_content):
48
  response = {"role": "assistant", "content": response_content}
49
  output = classify_prompt(conv_prefix, response)
50
- return output
 
51
 
52
  # Gradio Interface
53
  demo = gr.Interface(
@@ -57,9 +62,9 @@ demo = gr.Interface(
57
 
58
  gr.Textbox(lines=2, placeholder="Enter the assistant's response", label="Assistant Response", value='I am good! Thanks for asking')
59
  ],
60
- outputs="text",
61
- title="Prompt Safety Classification",
62
- description="Classify a conversation prompt's safety by providing a conversation prefix (array of objects) and an assistant's response."
63
  )
64
 
65
  demo.launch()
 
5
  API_ENDPOINT = "https://txl0ptjvttfogwt9.us-east-1.aws.endpoints.huggingface.cloud/v1/"
6
  API_KEY = "NA"
7
 
8
+ def llama_guard_classify(conv_prefix, response):
9
+ # Simulating LLaMA-Guard classification, replace with actual implementation
10
+ return '{"output": 1}'
11
+
12
  def classify_prompt(conv_prefix, response):
13
  template_str = """
14
  Please review the scoring criteria:
 
51
  def process_inputs(conv_prefix, response_content):
52
  response = {"role": "assistant", "content": response_content}
53
  output = classify_prompt(conv_prefix, response)
54
+ llama_output = llama_guard_classify(conv_prefix, response)
55
+ return output,llama_output
56
 
57
  # Gradio Interface
58
  demo = gr.Interface(
 
62
 
63
  gr.Textbox(lines=2, placeholder="Enter the assistant's response", label="Assistant Response", value='I am good! Thanks for asking')
64
  ],
65
+ outputs=[gr.Textbox(label="OpenAI Output"), gr.Textbox(label="LLaMA-Guard Output"),
66
+ title="Safety Classifier",
67
+ description="Classify a conversation's safety by providing a conversation prefix (array of objects) and an assistant's response."
68
  )
69
 
70
  demo.launch()