Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable streaming support for openai ChatCompletion #217 #465

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions autogen/oai/chat_completion_proxy.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
import openai
import tiktoken

from openai.openai_object import OpenAIObject


class ChatCompletionProxy:
@classmethod
def _prompt_tokens(cls, messages):
# Get the encoding for OpenAI's "cl100k_base" model
encoding = tiktoken.get_encoding("cl100k_base")

# Calculate the total number of tokens in the prompt
# by iterating over each message in the 'messages' list,
# encoding its content, and summing up the token counts.
return sum([len(encoding.encode(msg["content"])) for msg in messages])

@classmethod
def create(cls, *args, **kwargs):
# Check if streaming is enabled in the function arguments
if kwargs.get("stream", False) and "functions" not in kwargs:
# Prepare response array based on parameter 'n'
response_contents = [""] * kwargs.get("n", 1)
finish_reasons = [""] * kwargs.get("n", 1)
completion_tokens = 0

# Set the terminal text color to green for better visibility
print("\033[32m", end="")

# Send the chat completion request to OpenAI's API and process the response in chunks
for chunk in openai.ChatCompletion.create(*args, **kwargs):
if chunk["choices"]:
for choice in chunk["choices"]:
content = choice.get("delta", {}).get("content")
# If content is present, print it to the terminal and update response variables
if content is not None:
print(content, end="", flush=True)
response_contents[choice.index] += content
finish_reasons[choice.index] = choice.get("finish_reasons", None)
completion_tokens += 1
else:
print()

# Reset the terminal text color
print("\033[0m\n")

# Prepare the final response object based on the accumulated data
prompt_tokens = cls._prompt_tokens(kwargs["messages"])
response = OpenAIObject()
response.id = chunk["id"]
response.object = "chat.completion"
response.created = chunk["created"]
response.model = chunk["model"]
response.choices = []
response.usage = {
"prompt_tokens": prompt_tokens,
"completion_tokens": completion_tokens,
"total_tokens": prompt_tokens + completion_tokens,
}
for i in range(len(response_contents)):
response["choices"].append(
{
"index": i,
"finish_reason": finish_reasons[i],
"message": {"role": "assistant", "content": response_contents[i]},
}
)
else:
# If streaming is not enabled, send a regular chat completion request
# Ensure streaming is disabled
kwargs["stream"] = False
response = openai.ChatCompletion.create(*args, **kwargs)

# Return the final response object
return response
3 changes: 2 additions & 1 deletion autogen/oai/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from flaml.tune.space import is_constant
from flaml.automl.logger import logger_formatter
from .openai_utils import get_key
from .chat_completion_proxy import ChatCompletionProxy
from collections import defaultdict

try:
Expand Down Expand Up @@ -207,7 +208,7 @@ def _get_response(cls, config: Dict, raise_on_ratelimit_or_timeout=False, use_ca
cls._book_keeping(config, response)
return response
openai_completion = (
openai.ChatCompletion
ChatCompletionProxy # Support streaming for chat models
if config["model"].replace("gpt-35-turbo", "gpt-3.5-turbo") in cls.chat_models
or issubclass(cls, ChatCompletion)
else openai.Completion
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

install_requires = [
"openai<1",
"tiktoken",
"diskcache",
"termcolor",
"flaml",
Expand Down
Loading