fix model path (#11973)
This commit is contained in:
parent
e895e1b4c5
commit
1e8c87050f
1 changed files with 1 additions and 1 deletions
|
|
@ -270,7 +270,7 @@ def benchmark(llm_urls, model, prompt, num_requests, max_concurrent_requests, ma
|
||||||
LLM_URLS = [f"http://localhost:{PORT}/v1/completions" for PORT in [8000]]
|
LLM_URLS = [f"http://localhost:{PORT}/v1/completions" for PORT in [8000]]
|
||||||
|
|
||||||
|
|
||||||
MODEL = "llm/models/" + model_name
|
MODEL = "/llm/models/" + model_name
|
||||||
MAX_TOKENS = 512
|
MAX_TOKENS = 512
|
||||||
|
|
||||||
PROMPT = PROMPT_1024
|
PROMPT = PROMPT_1024
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue