Sbnos commited on
Commit
4524c74
·
verified ·
1 Parent(s): cf7407a

topk update

Browse files

topk to 10, context 19,000

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -39,8 +39,8 @@ embedding_function = HuggingFaceBgeEmbeddings(
39
  llm = Together(
40
  model="mistralai/Mixtral-8x22B-Instruct-v0.1",
41
  temperature=0.2,
42
- max_tokens=9096,
43
- top_k=6,
44
  together_api_key=os.environ['pilotikval']
45
  )
46
 
 
39
  llm = Together(
40
  model="mistralai/Mixtral-8x22B-Instruct-v0.1",
41
  temperature=0.2,
42
+ max_tokens=19096,
43
+ top_k=10,
44
  together_api_key=os.environ['pilotikval']
45
  )
46