Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ async def on_chat_start():
|
|
97 |
|
98 |
# Create a chain that uses the Chroma vector store
|
99 |
chain = ConversationalRetrievalChain.from_llm(
|
100 |
-
|
101 |
chain_type="stuff",
|
102 |
retriever=docsearch.as_retriever(),
|
103 |
memory=memory,
|
|
|
97 |
|
98 |
# Create a chain that uses the Chroma vector store
|
99 |
chain = ConversationalRetrievalChain.from_llm(
|
100 |
+
Fireworks(model="accounts/fireworks/models/llama-v2-13b-chat", model_kwargs={"temperature":0, "max_tokens":1500, "top_p":1.0}, streaming=True),
|
101 |
chain_type="stuff",
|
102 |
retriever=docsearch.as_retriever(),
|
103 |
memory=memory,
|