mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
### :title Generate text
|
|
### :order 0
|
|
### :section Basics
|
|
from tensorrt_llm import LLM, SamplingParams
|
|
|
|
|
|
def main():
|
|
|
|
# Model could accept HF model name, a path to local HF model,
|
|
# or Model Optimizer's quantized checkpoints like nvidia/Llama-3.1-8B-Instruct-FP8 on HF.
|
|
llm = LLM(model="TinyLlama/TinyLlama-1.1B-Chat-v1.0")
|
|
|
|
# Sample prompts.
|
|
prompts = [
|
|
"Hello, my name is",
|
|
"The capital of France is",
|
|
"The future of AI is",
|
|
]
|
|
|
|
# Create a sampling params.
|
|
sampling_params = SamplingParams(temperature=0.8, top_p=0.95)
|
|
|
|
for output in llm.generate(prompts, sampling_params):
|
|
print(
|
|
f"Prompt: {output.prompt!r}, Generated text: {output.outputs[0].text!r}"
|
|
)
|
|
|
|
# Got output like
|
|
# 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'
|
|
# Prompt: 'The capital of France is', Generated text: 'Paris.'
|
|
# 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'
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|