File size: 1,639 Bytes
0810902
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python3
"""Text-only generation with Piko-9b.

python examples/inference_transformers.py --prompt "Explain gradient clipping."
python examples/inference_transformers.py --model ./local-copy --quantization none
"""

from __future__ import annotations

import argparse
import sys

import torch
from _common import add_common_arguments, generation_kwargs, load_model, strip_reasoning

DEFAULT_SYSTEM = "You are Piko-9, an AI assistant. Be accurate, direct, and concise."


def main() -> None:
    parser = argparse.ArgumentParser(description=__doc__)
    add_common_arguments(parser)
    parser.add_argument("--prompt", required=True)
    parser.add_argument("--system", default=DEFAULT_SYSTEM)
    args = parser.parse_args()

    if not args.prompt.strip():
        sys.exit("--prompt must not be empty.")

    model, processor = load_model(args.model, args.quantization, args.dtype, args.revision)

    messages = []
    if args.system:
        messages.append({"role": "system", "content": args.system})
    messages.append({"role": "user", "content": [{"type": "text", "text": args.prompt}]})

    inputs = processor.apply_chat_template(
        messages,
        add_generation_prompt=True,
        tokenize=True,
        return_dict=True,
        return_tensors="pt",
    ).to(model.device)

    with torch.inference_mode():
        output = model.generate(**inputs, **generation_kwargs(args))

    text = processor.decode(
        output[0][inputs["input_ids"].shape[1] :], skip_special_tokens=True
    ).strip()

    print(text if args.show_reasoning else strip_reasoning(text))


if __name__ == "__main__":
    main()