awacke1 commited on
Commit
8cc9acb
·
1 Parent(s): 5d9526b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -15,7 +15,8 @@ load_dotenv()
15
  openai.api_key = os.getenv('OPENAI_KEY')
16
 
17
  def chat_with_model(prompts):
18
- model = "gpt-3.5-turbo"
 
19
  conversation = [{'role': 'system', 'content': 'You are a helpful assistant.'}]
20
  conversation.extend([{'role': 'user', 'content': prompt} for prompt in prompts])
21
 
 
15
  openai.api_key = os.getenv('OPENAI_KEY')
16
 
17
  def chat_with_model(prompts):
18
+ #model = "gpt-3.5-turbo"
19
+ model = "gpt-4-32k"
20
  conversation = [{'role': 'system', 'content': 'You are a helpful assistant.'}]
21
  conversation.extend([{'role': 'user', 'content': prompt} for prompt in prompts])
22