traversaal-ai commited on
Commit
c976c04
·
1 Parent(s): e1653e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -1,11 +1,10 @@
1
  import openai
2
  import gradio as gr
3
-
4
  # Set your OpenAI API key here
5
- api_key = "YOUR_API_KEY"
6
 
7
- # Initialize the OpenAI API client
8
- openai.api_key = api_key
9
 
10
  # Define a function to generate responses using GPT-3.5 Turbo
11
  def generate_response(user_prompt):
@@ -15,7 +14,7 @@ def generate_response(user_prompt):
15
  physical activity, sleep, nutrition and preventive care. Make sure you just reply with response in json format "category":"[sleep,nutrition]".
16
  Note that single question may belong to multiple categories. Dont add any opening lines just reply with json response.
17
  Question: {user_prompt}''',
18
- max_tokens=50, # You can adjust this to limit the response length
19
  )
20
  return response.choices[0].text
21
 
@@ -25,7 +24,7 @@ iface = gr.Interface(
25
  inputs="text",
26
  outputs="text",
27
  title="Detect Prompt Category",
28
- description="Enter a prompt, and GPT-3.5 Turbo will generate a response.",
29
  )
30
 
31
  # Start the Gradio interface
 
1
  import openai
2
  import gradio as gr
3
+ import os
4
  # Set your OpenAI API key here
 
5
 
6
+
7
+ openai.api_key = os.environ.get("openai_api_key")
8
 
9
  # Define a function to generate responses using GPT-3.5 Turbo
10
  def generate_response(user_prompt):
 
14
  physical activity, sleep, nutrition and preventive care. Make sure you just reply with response in json format "category":"[sleep,nutrition]".
15
  Note that single question may belong to multiple categories. Dont add any opening lines just reply with json response.
16
  Question: {user_prompt}''',
17
+ max_tokens=100, # You can adjust this to limit the response length
18
  )
19
  return response.choices[0].text
20
 
 
24
  inputs="text",
25
  outputs="text",
26
  title="Detect Prompt Category",
27
+ description="Enter a prompt",
28
  )
29
 
30
  # Start the Gradio interface