Skip to content

Commit 105d8e4

Browse files
committed
LLAMA 3 Update
1 parent ed9f199 commit 105d8e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def initialize_session_state():
1616
if 'chat_history' not in st.session_state:
1717
st.session_state.chat_history = []
1818
if 'model' not in st.session_state:
19-
st.session_state.model = 'mixtral-8x7b-32768'
19+
st.session_state.model = 'llama3-8b-8192'
2020
if 'programming_language' not in st.session_state:
2121
st.session_state.programming_language = 'Python'
2222
if 'style_guide' not in st.session_state:
@@ -30,7 +30,7 @@ def display_customization_options():
3030
st.sidebar.title('Customization')
3131
model = st.sidebar.selectbox(
3232
'Choose a model',
33-
['mixtral-8x7b-32768', 'llama2-70b-4096'],
33+
['llama3-8b-8192','mixtral-8x7b-32768', 'llama2-70b-4096'],
3434
key='model_selectbox'
3535
)
3636
programming_language = st.sidebar.selectbox(

0 commit comments

Comments
 (0)