majweldon commited on
Commit
2d328f7
·
1 Parent(s): 7212b54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,9 +4,9 @@ import time
4
  import os
5
 
6
  openai_secret_key = os.environ.get('OPENAI_SECRET_KEY')
7
- with open("/Format_Library/Weldon_Handover_Note_Format.txt", "r") as f:
8
  role = f.read()
9
- role_head = role[1:50]
10
 
11
  with gr.Blocks() as demo:
12
  chatbot = gr.Chatbot()
 
4
  import os
5
 
6
  openai_secret_key = os.environ.get('OPENAI_SECRET_KEY')
7
+ with open("Format_Library/Weldon_Handover_Note_Format.txt", "r") as f:
8
  role = f.read()
9
+ role_head = role[0:50]
10
 
11
  with gr.Blocks() as demo:
12
  chatbot = gr.Chatbot()