ragibhasan commited on
Commit
170e60d
·
verified ·
1 Parent(s): d9b094c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -41,7 +41,7 @@ def load_config():
41
  st.stop()
42
 
43
  # Set up the Streamlit page
44
- st.set_page_config(page_icon="💬", layout="wide", page_title="Llama 3.1 Chat App")
45
 
46
  # Load configuration
47
  config = load_config()
@@ -59,7 +59,7 @@ if "messages" not in st.session_state:
59
  st.session_state.messages = []
60
 
61
  # Define model details
62
- model_option = "llama-3.1-70b-versatile"
63
  if model_option not in config["models"]:
64
  st.error(f"The model '{model_option}' is not defined in the config file.")
65
  st.stop()
 
41
  st.stop()
42
 
43
  # Set up the Streamlit page
44
+ st.set_page_config(page_icon="💬", layout="wide", page_title="Llama 3.3 Chat App")
45
 
46
  # Load configuration
47
  config = load_config()
 
59
  st.session_state.messages = []
60
 
61
  # Define model details
62
+ model_option = "llama-3.3-70b-versatile"
63
  if model_option not in config["models"]:
64
  st.error(f"The model '{model_option}' is not defined in the config file.")
65
  st.stop()