bing-chat-api / examples /chat_with_openai.py
Hansimov's picture
:gem: [Feature] Enable OpenAI API call from fastapi with EventSourceResponse of sse_starlette
7bfabdf
raw
history blame
681 Bytes
from openai import OpenAI
base_url = "http://localhost:22222"
api_key = "sk-xxxxx"
client = OpenAI(base_url=base_url, api_key=api_key)
extra_body = {
"invocation_id": 1,
}
response = client.chat.completions.create(
model="precise",
messages=[
{
"role": "user",
"content": "how many questions have I asked you?",
}
],
stream=True,
extra_body=extra_body,
)
# print(response)
for chunk in response:
if chunk.choices[0].delta.content is not None:
print(chunk.choices[0].delta.content, end="", flush=True)
elif chunk.choices[0].finish_reason == "stop":
print()
else:
print(chunk)