summaryrefslogtreecommitdiffstats
path: root/g4f/client/stubs.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-11-16 13:19:51 +0100
committerGitHub <noreply@github.com>2024-11-16 13:19:51 +0100
commit6ce493d4dfc2884832ff5b5be4479a55818b2fe7 (patch)
tree92e9efce62f7832ebe56969c120d8e92e75881a3 /g4f/client/stubs.py
parentUpdate internet.py (diff)
downloadgpt4free-6ce493d4dfc2884832ff5b5be4479a55818b2fe7.tar
gpt4free-6ce493d4dfc2884832ff5b5be4479a55818b2fe7.tar.gz
gpt4free-6ce493d4dfc2884832ff5b5be4479a55818b2fe7.tar.bz2
gpt4free-6ce493d4dfc2884832ff5b5be4479a55818b2fe7.tar.lz
gpt4free-6ce493d4dfc2884832ff5b5be4479a55818b2fe7.tar.xz
gpt4free-6ce493d4dfc2884832ff5b5be4479a55818b2fe7.tar.zst
gpt4free-6ce493d4dfc2884832ff5b5be4479a55818b2fe7.zip
Diffstat (limited to '')
-rw-r--r--g4f/client/stubs.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/g4f/client/stubs.py b/g4f/client/stubs.py
index 8cf2bcba..b38c9f6c 100644
--- a/g4f/client/stubs.py
+++ b/g4f/client/stubs.py
@@ -1,6 +1,7 @@
from __future__ import annotations
from typing import Union
+from time import time
class Model():
...
@@ -108,8 +109,18 @@ class Image(Model):
return self.__dict__
class ImagesResponse(Model):
- def __init__(self, data: list[Image], created: int = 0) -> None:
+ data: list[Image]
+ model: str
+ provider: str
+ created: int
+
+ def __init__(self, data: list[Image], created: int = None, model: str = None, provider: str = None) -> None:
self.data = data
+ if created is None:
+ created = int(time())
+ self.model = model
+ if provider is not None:
+ self.provider = provider
self.created = created
def to_json(self):