OpenAI Embedding Client
Source vllm-project/vllm.
1from openai import OpenAI23# Modify OpenAI's API key and API base to use vLLM's API server.4openai_api_key = "EMPTY"5openai_api_base = "http://localhost:8000/v1"67client = OpenAI(8 # defaults to os.environ.get("OPENAI_API_KEY")9 api_key=openai_api_key,10 base_url=openai_api_base,11)1213models = client.models.list()14model = models.data[0].id1516responses = client.embeddings.create(input=[17 "Hello my name is",18 "The best thing about vLLM is that it supports many different models"19],20 model=model)2122for data in responses.data:23 print(data.embedding) # list of float of len 4096