codelion commited on
Commit
b196761
·
verified ·
1 Parent(s): f7241cf

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -36,7 +36,7 @@ if 'chat_history' not in st.session_state:
36
  vector_store = SupabaseVectorStore(supabase, embeddings, query_name='match_documents', table_name="documents")
37
  memory = ConversationBufferMemory(memory_key="chat_history", input_key='question', output_key='answer', return_messages=True)
38
 
39
- model = "meta-llama/Llama-2-70b-chat-hf" #mistralai/Mixtral-8x7B-Instruct-v0.1
40
  temperature = 0.1
41
  max_tokens = 500
42
  stats = str(get_usage(supabase))
 
36
  vector_store = SupabaseVectorStore(supabase, embeddings, query_name='match_documents', table_name="documents")
37
  memory = ConversationBufferMemory(memory_key="chat_history", input_key='question', output_key='answer', return_messages=True)
38
 
39
+ model = "CohereForAI/c4ai-command-r-plus" #mistralai/Mixtral-8x7B-Instruct-v0.1
40
  temperature = 0.1
41
  max_tokens = 500
42
  stats = str(get_usage(supabase))