openai_completion_client.py 880 Bytes
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
from openai import OpenAI
4

Woosuk Kwon's avatar
Woosuk Kwon committed
5
# Modify OpenAI's API key and API base to use vLLM's API server.
6
7
openai_api_key = "EMPTY"
openai_api_base = "http://localhost:8000/v1"
Zhuohan Li's avatar
Zhuohan Li committed
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

def main():
    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
    stream = False
    completion = client.completions.create(
        model=model,
        prompt="A robot may not injure a human being",
        echo=False,
        n=2,
        stream=stream,
        logprobs=3)

    print("-" * 50)
    print("Completion results:")
    if stream:
        for c in completion:
            print(c)
    else:
        print(completion)
    print("-" * 50)


if __name__ == "__main__":
    main()