openai_completion_client.py 661 Bytes
Newer Older
1
from openai import OpenAI
2

Woosuk Kwon's avatar
Woosuk Kwon committed
3
# Modify OpenAI's API key and API base to use vLLM's API server.
4
5
openai_api_key = "EMPTY"
openai_api_base = "http://localhost:8000/v1"
Zhuohan Li's avatar
Zhuohan Li committed
6

7
8
9
10
11
client = OpenAI(
    # defaults to os.environ.get("OPENAI_API_KEY")
    api_key=openai_api_key,
    base_url=openai_api_base,
)
Zhuohan Li's avatar
Zhuohan Li committed
12

13
14
models = client.models.list()
model = models.data[0].id
15
16
17

# Completion API
stream = False
18
completion = client.completions.create(
19
20
21
22
23
    model=model,
    prompt="A robot may not injure a human being",
    echo=False,
    n=2,
    stream=stream,
24
25
    logprobs=3
)
Zhuohan Li's avatar
Zhuohan Li committed
26

27
print("Completion results:")
Zhuohan Li's avatar
Zhuohan Li committed
28
29
30
31
if stream:
    for c in completion:
        print(c)
else:
32
    print(completion)