Promotingai commited on
Commit
484ca91
·
verified ·
1 Parent(s): 28b5ad4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -6,8 +6,7 @@ import os
6
  openai_api_key = os.getenv("OPENAI_API_KEY")
7
 
8
  # Select model using a dropdown
9
- model_choice = st.selectbox('Choose a model:', ['gpt-4-turbo','gpt-3.5-turbo', 'gpt-3.5-turbo-0125','gpt-3.5-turbo-1106','gpt-3.5-turbo-0613','gpt-3.5-turbo-16k-0613','gpt-3.5-turbo-16k','gpt-4-turbo-2024-04-09','gpt-4-turbo-preview', 'gpt-4-0125-preview','gpt-4-1106-preview','gpt-4-0613'])
10
-
11
  # Read system message from a text file
12
  try:
13
  with open("system_message.txt", "r") as file:
 
6
  openai_api_key = os.getenv("OPENAI_API_KEY")
7
 
8
  # Select model using a dropdown
9
+ model_choice = "gpt-3.5-turbo"
 
10
  # Read system message from a text file
11
  try:
12
  with open("system_message.txt", "r") as file: