[Doc] Update model in arch_overview.rst to match comment (#10701)

Signed-off-by: spacewander <spacewanderlzx@gmail.com>
This commit is contained in:
罗泽轩 2024-11-28 15:58:39 +08:00 committed by GitHub
parent 70dc14fbd0
commit 278be671a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,7 +42,7 @@ Here is a sample of `LLM` class usage:
sampling_params = SamplingParams(temperature=0.8, top_p=0.95)
# Initialize the LLM engine with the OPT-125M model
llm = LLM(model="Qwen/Qwen2.5-1.5B-Instruct")
llm = LLM(model="facebook/opt-125m")
# Generate outputs for the input prompts
outputs = llm.generate(prompts, sampling_params)