RASMUS commited on
Commit
d039ba2
·
1 Parent(s): 2ea6bd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ import numpy as np
13
  import time
14
 
15
  # Set up OpenAI API key
16
- openai.api_key = api_key#os.environ["CHATGPT_API_KEY"]
17
 
18
  Init_system_prompt = "You are an AI Assistant that tries to teach kids various subjects. You are given learning material and you task is to ask questions given the material and then you also grade answers and give feedback how to improve the answers"
19
  system_message = {"role": "system", "content": Init_system_prompt}
 
13
  import time
14
 
15
  # Set up OpenAI API key
16
+ openai.api_key = os.environ["CHATGPT_API_KEY"]
17
 
18
  Init_system_prompt = "You are an AI Assistant that tries to teach kids various subjects. You are given learning material and you task is to ask questions given the material and then you also grade answers and give feedback how to improve the answers"
19
  system_message = {"role": "system", "content": Init_system_prompt}