codelion commited on
Commit
81971c5
1 Parent(s): 9e3401f

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -3
main.py CHANGED
@@ -36,9 +36,8 @@ 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 = "mistralai/Mixtral-8x7B-Instruct-v0.1"
40
- model = "Qwen/Qwen2.5-72B-Instruct"
41
- # model = "meta-llama/Meta-Llama-3.1-405B-Instruct-FP8"
42
  temperature = 0.1
43
  max_tokens = 500
44
  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 = "mistralai/Mixtral-8x7B-Instruct-v0.1"
40
+
 
41
  temperature = 0.1
42
  max_tokens = 500
43
  stats = str(get_usage(supabase))