bing-chat-api / networks /message_outputer.py
Hansimov's picture
:zap: [Enhance] OpenAI API to bing chat: Fix suggestions output, and unnecessary data line
0fdaf32
raw
history blame
1.9 kB
import json
class OpenaiStreamOutputer:
"""
Create chat completion - OpenAI API Documentation
* https://platform.openai.com/docs/api-reference/chat/create
"""
def data_to_string(self, data={}, content_type=""):
# return (json.dumps(data) + "\n").encode("utf-8")
data_str = f"{json.dumps(data)}"
return data_str
def output(self, content=None, content_type=None) -> str:
data = {
"created": 1677825464,
"id": "chatcmpl-bing",
"object": "chat.completion.chunk",
# "content_type": content_type,
"model": "bing",
"choices": [],
}
if content_type == "Role":
data["choices"] = [
{
"index": 0,
"delta": {"role": "assistant"},
"finish_reason": None,
}
]
elif content_type in [
"Completions",
"InternalSearchQuery",
"InternalSearchResult",
"SuggestedResponses",
]:
if content_type in ["InternalSearchQuery", "InternalSearchResult"]:
content += "\n"
data["choices"] = [
{
"index": 0,
"delta": {"content": content},
"finish_reason": None,
}
]
elif content_type == "Finished":
data["choices"] = [
{
"index": 0,
"delta": {},
"finish_reason": "stop",
}
]
else:
data["choices"] = [
{
"index": 0,
"delta": {},
"finish_reason": None,
}
]
return self.data_to_string(data, content_type)