openai_completion_client.py 1.16 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
4
import argparse

5
from openai import OpenAI
6

Woosuk Kwon's avatar
Woosuk Kwon committed
7
# Modify OpenAI's API key and API base to use vLLM's API server.
8
9
openai_api_key = "EMPTY"
openai_api_base = "http://localhost:8000/v1"
Zhuohan Li's avatar
Zhuohan Li committed
10

11

12
13
14
15
16
17
18
19
20
def parse_args():
    parser = argparse.ArgumentParser(description="Client for vLLM API server")
    parser.add_argument("--stream",
                        action="store_true",
                        help="Enable streaming response")
    return parser.parse_args()


def main(args):
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    client = OpenAI(
        # defaults to os.environ.get("OPENAI_API_KEY")
        api_key=openai_api_key,
        base_url=openai_api_base,
    )

    models = client.models.list()
    model = models.data[0].id

    # Completion API
    completion = client.completions.create(
        model=model,
        prompt="A robot may not injure a human being",
        echo=False,
        n=2,
36
        stream=args.stream,
37
38
39
40
        logprobs=3)

    print("-" * 50)
    print("Completion results:")
41
    if args.stream:
42
43
44
45
46
47
48
49
        for c in completion:
            print(c)
    else:
        print(completion)
    print("-" * 50)


if __name__ == "__main__":
50
51
    args = parse_args()
    main(args)