-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: integration release 0.17.2 (#180)
* fix: supported approximate tokenization of tools and functions (#170) * chore: empty commit --------- Co-authored-by: Anton Dubovik <[email protected]>
- Loading branch information
1 parent
35d7ee7
commit bed9ef3
Showing
10 changed files
with
193 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
from typing import Any, Iterable, Literal, Self | ||
|
||
from aidial_sdk.utils.merge_chunks import merge_chat_completion_chunks | ||
from pydantic import BaseModel | ||
|
||
|
||
class ChatCompletionResponse(BaseModel): | ||
message_key: Literal["delta", "message"] | ||
resp: dict = {} | ||
|
||
@property | ||
def usage(self) -> Any | None: | ||
return self.resp.get("usage") | ||
|
||
@property | ||
def is_empty(self) -> bool: | ||
return self.resp == {} | ||
|
||
@property | ||
def finish_reasons(self) -> Iterable[Any]: | ||
for choice in self.resp.get("choices") or []: | ||
if (reason := choice.get("finish_reason")) is not None: | ||
yield reason | ||
|
||
@property | ||
def has_finish_reason(self) -> bool: | ||
return len(list(self.finish_reasons)) > 0 | ||
|
||
@property | ||
def messages(self) -> Iterable[Any]: | ||
for choice in self.resp.get("choices") or []: | ||
if (message := choice.get(self.message_key)) is not None: | ||
yield message | ||
|
||
@property | ||
def has_messages(self) -> bool: | ||
return len(list(self.messages)) > 0 | ||
|
||
|
||
class ChatCompletionBlock(ChatCompletionResponse): | ||
def __init__(self, **kwargs): | ||
super().__init__(message_key="message", **kwargs) | ||
|
||
|
||
class ChatCompletionStreamingChunk(ChatCompletionResponse): | ||
def __init__(self, **kwargs): | ||
super().__init__(message_key="delta", **kwargs) | ||
|
||
def merge(self, chunk: dict) -> Self: | ||
self.resp = merge_chat_completion_chunks(self.resp, chunk) | ||
return self |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.