Spaces:
Running
Running
Update main.py
Browse files
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 = "
|
40 |
|
41 |
temperature = 0.1
|
42 |
max_tokens = 500
|
|
|
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-3.3-70B-Instruct"
|
40 |
|
41 |
temperature = 0.1
|
42 |
max_tokens = 500
|