File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments