mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-26 04:33:35 +03:00
eae317a166
* Improve download of generated images, serve images in the api * Add support for conversation handling in the api * Add orginal prompt to image response * Add download images option in gui, fix loading model list in Airforce * Support speech synthesize in Openai generator
39 lines
931 B
Python
39 lines
931 B
Python
from __future__ import annotations
|
|
|
|
from abc import abstractmethod
|
|
|
|
class ResponseType:
|
|
@abstractmethod
|
|
def __str__(self) -> str:
|
|
pass
|
|
|
|
class FinishReason():
|
|
def __init__(self, reason: str):
|
|
self.reason = reason
|
|
|
|
def __str__(self) -> str:
|
|
return ""
|
|
|
|
class Sources(ResponseType):
|
|
def __init__(self, sources: list[dict[str, str]]) -> None:
|
|
self.list = sources
|
|
|
|
def __str__(self) -> str:
|
|
return "\n\n" + ("\n".join([f"{idx+1}. [{link['title']}]({link['url']})" for idx, link in enumerate(self.list)]))
|
|
|
|
class BaseConversation(ResponseType):
|
|
def __str__(self) -> str:
|
|
return ""
|
|
|
|
class SynthesizeData(ResponseType):
|
|
def __init__(self, provider: str, data: dict):
|
|
self.provider = provider
|
|
self.data = data
|
|
|
|
def to_json(self) -> dict:
|
|
return {
|
|
**self.__dict__
|
|
}
|
|
|
|
def __str__(self) -> str:
|
|
return "" |