OdinStef commited on
Commit
d1c5b05
·
1 Parent(s): dbb936f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ openai.api_key = "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"
6
  messages = [{"role": "system", "content": "You are a financial experts that specializes in real estate investment and negotiation"}]
7
 
8
  def CustomChatGPT(user_input):
9
- messages.append({"role": "user", "content": enter_input_here})
10
  response = openai.ChatCompletion.create(
11
  model = "gpt-3.5-turbo",
12
  messages = messages
 
6
  messages = [{"role": "system", "content": "You are a financial experts that specializes in real estate investment and negotiation"}]
7
 
8
  def CustomChatGPT(user_input):
9
+ messages.append({"role": "user", "content": user_input})
10
  response = openai.ChatCompletion.create(
11
  model = "gpt-3.5-turbo",
12
  messages = messages