mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
119 lines
3.4 KiB
Python
119 lines
3.4 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import Union
|
|
|
|
class Model():
|
|
...
|
|
|
|
class ChatCompletion(Model):
|
|
def __init__(
|
|
self,
|
|
content: str,
|
|
finish_reason: str,
|
|
completion_id: str = None,
|
|
created: int = None
|
|
):
|
|
self.id: str = f"chatcmpl-{completion_id}" if completion_id else None
|
|
self.object: str = "chat.completion"
|
|
self.created: int = created
|
|
self.model: str = None
|
|
self.provider: str = None
|
|
self.choices = [ChatCompletionChoice(ChatCompletionMessage(content), finish_reason)]
|
|
self.usage: dict[str, int] = {
|
|
"prompt_tokens": 0, #prompt_tokens,
|
|
"completion_tokens": 0, #completion_tokens,
|
|
"total_tokens": 0, #prompt_tokens + completion_tokens,
|
|
}
|
|
|
|
def to_json(self):
|
|
return {
|
|
**self.__dict__,
|
|
"choices": [choice.to_json() for choice in self.choices]
|
|
}
|
|
|
|
class ChatCompletionChunk(Model):
|
|
def __init__(
|
|
self,
|
|
content: str,
|
|
finish_reason: str,
|
|
completion_id: str = None,
|
|
created: int = None
|
|
):
|
|
self.id: str = f"chatcmpl-{completion_id}" if completion_id else None
|
|
self.object: str = "chat.completion.chunk"
|
|
self.created: int = created
|
|
self.model: str = None
|
|
self.provider: str = None
|
|
self.choices = [ChatCompletionDeltaChoice(ChatCompletionDelta(content), finish_reason)]
|
|
|
|
def to_json(self):
|
|
return {
|
|
**self.__dict__,
|
|
"choices": [choice.to_json() for choice in self.choices]
|
|
}
|
|
|
|
class ChatCompletionMessage(Model):
|
|
def __init__(self, content: Union[str, None]):
|
|
self.role = "assistant"
|
|
self.content = content
|
|
|
|
def to_json(self):
|
|
return self.__dict__
|
|
|
|
class ChatCompletionChoice(Model):
|
|
def __init__(self, message: ChatCompletionMessage, finish_reason: str):
|
|
self.index = 0
|
|
self.message = message
|
|
self.finish_reason = finish_reason
|
|
|
|
def to_json(self):
|
|
return {
|
|
**self.__dict__,
|
|
"message": self.message.to_json()
|
|
}
|
|
|
|
class ChatCompletionDelta(Model):
|
|
content: Union[str, None] = None
|
|
|
|
def __init__(self, content: Union[str, None]):
|
|
if content is not None:
|
|
self.content = content
|
|
self.role = "assistant"
|
|
|
|
def to_json(self):
|
|
return self.__dict__
|
|
|
|
class ChatCompletionDeltaChoice(Model):
|
|
def __init__(self, delta: ChatCompletionDelta, finish_reason: Union[str, None]):
|
|
self.index = 0
|
|
self.delta = delta
|
|
self.finish_reason = finish_reason
|
|
|
|
def to_json(self):
|
|
return {
|
|
**self.__dict__,
|
|
"delta": self.delta.to_json()
|
|
}
|
|
|
|
class Image(Model):
|
|
def __init__(self, url: str = None, b64_json: str = None, revised_prompt: str = None) -> None:
|
|
if url is not None:
|
|
self.url = url
|
|
if b64_json is not None:
|
|
self.b64_json = b64_json
|
|
if revised_prompt is not None:
|
|
self.revised_prompt = revised_prompt
|
|
|
|
def to_json(self):
|
|
return self.__dict__
|
|
|
|
class ImagesResponse(Model):
|
|
def __init__(self, data: list[Image], created: int = 0) -> None:
|
|
self.data = data
|
|
self.created = created
|
|
|
|
def to_json(self):
|
|
return {
|
|
**self.__dict__,
|
|
"data": [image.to_json() for image in self.data]
|
|
} |