remove maxnew tokens
Browse files
app.py
CHANGED
@@ -22,7 +22,6 @@ embedding_function = HuggingFaceBgeEmbeddings(
|
|
22 |
llm = Together(
|
23 |
model="mistralai/Mixtral-8x22B-Instruct-v0.1",
|
24 |
temperature=0.2,
|
25 |
-
max_new_tokens=22000,
|
26 |
top_k=12,
|
27 |
together_api_key=os.environ['pilotikval']
|
28 |
)
|
@@ -30,7 +29,6 @@ llm = Together(
|
|
30 |
llmc = Together(
|
31 |
model="mistralai/Mixtral-8x22B-Instruct-v0.1",
|
32 |
temperature=0.2,
|
33 |
-
max_new_tokens=1000,
|
34 |
top_k=3,
|
35 |
together_api_key=os.environ['pilotikval']
|
36 |
)
|
|
|
22 |
llm = Together(
|
23 |
model="mistralai/Mixtral-8x22B-Instruct-v0.1",
|
24 |
temperature=0.2,
|
|
|
25 |
top_k=12,
|
26 |
together_api_key=os.environ['pilotikval']
|
27 |
)
|
|
|
29 |
llmc = Together(
|
30 |
model="mistralai/Mixtral-8x22B-Instruct-v0.1",
|
31 |
temperature=0.2,
|
|
|
32 |
top_k=3,
|
33 |
together_api_key=os.environ['pilotikval']
|
34 |
)
|