traversaal-ai commited on
Commit
1867217
·
1 Parent(s): 28bf071

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -15,7 +15,7 @@ def generate_response(user_prompt):
15
  # Define the user message
16
  prompt= f'''I will give you a question and you detect which category does this question belong to. It should be from these categories -
17
  physical activity, sleep, nutrition and preventive care. Make sure you just reply with response in json format "category":"[sleep,nutrition]".
18
- Note that single question may belong to multiple categories. Dont add any opening lines just reply with json response.
19
  Question: {user_prompt}'''
20
  #user_msg = 'Create a small dataset about total sales over the last year. The format of the dataset should be a data frame with 12 rows and 2 columns. The columns should be called "month" and "total_sales_usd". The "month" column should contain the shortened forms of month names from "Jan" to "Dec". The "total_sales_usd" column should contain random numeric values taken from a normal distribution with mean 100000 and standard deviation 5000. Provide Python code to generate the dataset, then provide the output in the format of a markdown table.'
21
 
@@ -30,13 +30,13 @@ def generate_response(user_prompt):
30
  return response["choices"][0]["message"]["content"]
31
 
32
  # Create a Gradio interface
33
- iface = gr.Interface(
34
- fn=generate_response,
35
- inputs="text",
36
- outputs="json",
37
- title="Detect Prompt Category",
38
- description="Enter a prompt",
39
- )
40
 
41
  # Start the Gradio interface
42
  iface.launch()
 
15
  # Define the user message
16
  prompt= f'''I will give you a question and you detect which category does this question belong to. It should be from these categories -
17
  physical activity, sleep, nutrition and preventive care. Make sure you just reply with response in json format "category":"[sleep,nutrition]".
18
+ Note that single question may belong to multiple categories. Dont add any opening lines just reply with json response. If there is no match return no category
19
  Question: {user_prompt}'''
20
  #user_msg = 'Create a small dataset about total sales over the last year. The format of the dataset should be a data frame with 12 rows and 2 columns. The columns should be called "month" and "total_sales_usd". The "month" column should contain the shortened forms of month names from "Jan" to "Dec". The "total_sales_usd" column should contain random numeric values taken from a normal distribution with mean 100000 and standard deviation 5000. Provide Python code to generate the dataset, then provide the output in the format of a markdown table.'
21
 
 
30
  return response["choices"][0]["message"]["content"]
31
 
32
  # Create a Gradio interface
33
+
34
+ iface = gr.Interface(fn=generate_response,
35
+ inputs=[gr.components.Textbox( label="prompt",
36
+ value='Who is the target population for Abdominal Aortic Aneurysm (AAA) screening?')],
37
+ outputs=[gr.JSON(label="category"),
38
+ gr.JSON(label="Detect Prompt Category")]
39
+ )
40
 
41
  # Start the Gradio interface
42
  iface.launch()