Dekode commited on
Commit
78ae5a2
1 Parent(s): cb84364

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ def ask_gpt3(prompt):
36
  def main():
37
  st.title("Fitness Chatbot")
38
  st.sidebar.title("Personal Information")
39
- openai.api_key = st.sidebar.text_input("OpenAI API Key", type="password", value = "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")
40
  height_cm = st.sidebar.number_input("Height (cm)", 0, 250)
41
  weight_kg = st.sidebar.number_input("Weight (kg)", 0, 500)
42
  age = st.sidebar.number_input("Age", 0, 100)
 
36
  def main():
37
  st.title("Fitness Chatbot")
38
  st.sidebar.title("Personal Information")
39
+ openai.api_key = st.sidebar.text_input("OpenAI API Key", type="password")
40
  height_cm = st.sidebar.number_input("Height (cm)", 0, 250)
41
  weight_kg = st.sidebar.number_input("Weight (kg)", 0, 500)
42
  age = st.sidebar.number_input("Age", 0, 100)