KunaalNaik commited on
Commit
0ac60a5
1 Parent(s): 1898c68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def generate_linkedin_post(topic):
14
  "And only contain 3 points."
15
  "The tone should be positive and encouraging, suitable for networking and professional growth."
16
  )
17
- llm = OpenAI(temperature=0.7, openai_api_key=OPENAI_API_KEY)
18
  response = llm(prompt)
19
  return response
20
 
 
14
  "And only contain 3 points."
15
  "The tone should be positive and encouraging, suitable for networking and professional growth."
16
  )
17
+ llm = OpenAI(temperature=0.7, openai_api_key=st.secrets["OPENAI_API_KEY"])
18
  response = llm(prompt)
19
  return response
20