Generate text

Source https://github.com/NVIDIA/TensorRT-LLM/tree/main/examples/llm-api/llm_inference.py.

 1### Generate text
 2import tempfile
 3
 4from tensorrt_llm import LLM, SamplingParams
 5
 6
 7def main():
 8
 9    # Model could accept HF model name, a path to local HF model,
10    # or TensorRT Model Optimizer's quantized checkpoints like nvidia/Llama-3.1-8B-Instruct-FP8 on HF.
11    llm = LLM(model="TinyLlama/TinyLlama-1.1B-Chat-v1.0")
12
13    # You can save the engine to disk and load it back later, the LLM class can accept either a HF model or a TRT-LLM engine.
14    llm.save(tempfile.mkdtemp())
15
16    # Sample prompts.
17    prompts = [
18        "Hello, my name is",
19        "The president of the United States is",
20        "The capital of France is",
21        "The future of AI is",
22    ]
23
24    # Create a sampling params.
25    sampling_params = SamplingParams(temperature=0.8, top_p=0.95)
26
27    for output in llm.generate(prompts, sampling_params):
28        print(
29            f"Prompt: {output.prompt!r}, Generated text: {output.outputs[0].text!r}"
30        )
31
32    # Got output like
33    # Prompt: 'Hello, my name is', Generated text: '\n\nJane Smith. I am a student pursuing my degree in Computer Science at [university]. I enjoy learning new things, especially technology and programming'
34    # Prompt: 'The president of the United States is', Generated text: 'likely to nominate a new Supreme Court justice to fill the seat vacated by the death of Antonin Scalia. The Senate should vote to confirm the'
35    # Prompt: 'The capital of France is', Generated text: 'Paris.'
36    # Prompt: 'The future of AI is', Generated text: 'an exciting time for us. We are constantly researching, developing, and improving our platform to create the most advanced and efficient model available. We are'
37
38
39if __name__ == '__main__':
40    main()