Update app.py
Browse files
app.py
CHANGED
|
@@ -71,8 +71,7 @@ documents = loader.load()
|
|
| 71 |
llm = TogetherLLM(
|
| 72 |
model= "togethercomputer/llama-2-70b-chat",
|
| 73 |
temperature = 0.1,
|
| 74 |
-
max_tokens = 1024
|
| 75 |
-
)
|
| 76 |
|
| 77 |
# chain
|
| 78 |
chain = load_qa_chain(llm=llm, chain_type="stuff")
|
|
|
|
| 71 |
llm = TogetherLLM(
|
| 72 |
model= "togethercomputer/llama-2-70b-chat",
|
| 73 |
temperature = 0.1,
|
| 74 |
+
max_tokens = 1024)
|
|
|
|
| 75 |
|
| 76 |
# chain
|
| 77 |
chain = load_qa_chain(llm=llm, chain_type="stuff")
|