Skip to content

Commit 488017d

Browse files
authored
fix mismatched argument name (mlc-ai#1117)
fix error introduced by recent code changes fixes mlc-ai#1116
1 parent 8ce7793 commit 488017d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/mlc_chat/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ async def lifespan(app: FastAPI):
115115
chat_mod = ChatModule(
116116
model=ARGS.model,
117117
device=ARGS.device,
118-
lib_path=ARGS.lib_path,
118+
model_lib_path=ARGS.lib_path,
119119
)
120120
session["chat_mod"] = chat_mod
121121

0 commit comments

Comments
 (0)