bsmith3715 commited on
Commit
7640325
·
verified ·
1 Parent(s): 82a0260

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -11,11 +11,11 @@ from dotenv import load_dotenv
11
  load_dotenv()
12
 
13
  # ChatOpenAI Templates
14
- system_template = """You are a helpful assistant who always speaks in a pleasant tone!
15
  """
16
 
17
  user_template = """{input}
18
- Think through your response step by step.
19
  """
20
 
21
 
@@ -23,7 +23,7 @@ Think through your response step by step.
23
  async def start_chat():
24
  settings = {
25
  "model": "gpt-3.5-turbo",
26
- "temperature": 0,
27
  "max_tokens": 500,
28
  "top_p": 1,
29
  "frequency_penalty": 0,
 
11
  load_dotenv()
12
 
13
  # ChatOpenAI Templates
14
+ system_template = """You are a subject matter expert who always speaks in a pleasant tone!
15
  """
16
 
17
  user_template = """{input}
18
+ Think through your response step by step, and provide updates as you progress. When asked to summarize, please provide 3-5 bullet points summarizing the key points.
19
  """
20
 
21
 
 
23
  async def start_chat():
24
  settings = {
25
  "model": "gpt-3.5-turbo",
26
+ "temperature": 0.2,
27
  "max_tokens": 500,
28
  "top_p": 1,
29
  "frequency_penalty": 0,