Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
黄宇扬 committed Jun 24, 2024
1 parent 5ae5cea commit 89b2658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/openai_server/fastllm_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def init_fast_llm_model(self):
llm.set_cpu_threads(self.cpu_thds)
llm.set_cpu_low_mem(self.low_mem_mode)
llm.set_cuda_embedding(self.cuda_embedding)
self.model = llm.model(self.model_path, dtype = self.dtype, tokenizer_type = "fastllm")
self.model = llm.model(self.model_path, dtype = self.dtype, tokenizer_type = "auto")
self.model.set_atype(self.atype)

def create_error_response(
Expand Down

0 comments on commit 89b2658

Please sign in to comment.