runsdata commited on
Commit
91a716d
·
1 Parent(s): 5f9e7f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -28,6 +28,10 @@ retriever = db.as_retriever(search_type='similarity', search_kwargs={"k":2})
28
  with open('system_prompt.txt', 'r') as file:
29
  ORIG_SYSTEM_MESSAGE_PROMPT = file.read()
30
 
 
 
 
 
31
  openai.api_key = os.getenv("OPENAI_API_KEY")
32
 
33
  #chat = ChatOpenAI(model_name="gpt-3.5-turbo",temperature=0) # Faster for experiments
 
28
  with open('system_prompt.txt', 'r') as file:
29
  ORIG_SYSTEM_MESSAGE_PROMPT = file.read()
30
 
31
+
32
+ with open('user_info_simulated.txt', 'r') as file:
33
+ user_info_simulated = file.read()
34
+
35
  openai.api_key = os.getenv("OPENAI_API_KEY")
36
 
37
  #chat = ChatOpenAI(model_name="gpt-3.5-turbo",temperature=0) # Faster for experiments