Wolf369 commited on
Commit
963cfae
1 Parent(s): c04b7e9
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -16,7 +16,7 @@ def read_root(
16
  model: str = "mistralai/Mistral-7B-v0.1",
17
  temperature: float = 0.,
18
  max_tokens: int = 1024) -> List:
19
- sampling_params = SamplingParams(temperature=temperature, max_tokens=max_tokens, tensor_parallel_size=None)
20
 
21
  llm = LLM(model=model)
22
 
 
16
  model: str = "mistralai/Mistral-7B-v0.1",
17
  temperature: float = 0.,
18
  max_tokens: int = 1024) -> List:
19
+ sampling_params = SamplingParams(temperature=temperature, max_tokens=max_tokens)
20
 
21
  llm = LLM(model=model)
22