diff options
author | abc <98614666+xtekky@users.noreply.github.com> | 2023-09-17 23:24:15 +0200 |
---|---|---|
committer | abc <98614666+xtekky@users.noreply.github.com> | 2023-09-17 23:24:15 +0200 |
commit | f34012a98ba35b8b4b12cd72d161b94b9000c7d4 (patch) | |
tree | 3fa130665f9eddf063cb805de57e3309050c9faf /g4f | |
parent | ~ | Merge pull request #907 from MIDORIBIN/fix-type-hint (diff) | |
download | gpt4free-f34012a98ba35b8b4b12cd72d161b94b9000c7d4.tar gpt4free-f34012a98ba35b8b4b12cd72d161b94b9000c7d4.tar.gz gpt4free-f34012a98ba35b8b4b12cd72d161b94b9000c7d4.tar.bz2 gpt4free-f34012a98ba35b8b4b12cd72d161b94b9000c7d4.tar.lz gpt4free-f34012a98ba35b8b4b12cd72d161b94b9000c7d4.tar.xz gpt4free-f34012a98ba35b8b4b12cd72d161b94b9000c7d4.tar.zst gpt4free-f34012a98ba35b8b4b12cd72d161b94b9000c7d4.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/g4f/__init__.py b/g4f/__init__.py index 1e8664c1..d8681297 100644 --- a/g4f/__init__.py +++ b/g4f/__init__.py @@ -1,12 +1,11 @@ from __future__ import annotations -from . import models +from g4f import models from .Provider import BaseProvider from .typing import Any, CreateResult, Union import random logging = False - class ChatCompletion: @staticmethod def create( |