diff options
Diffstat (limited to 'g4f/__init__.py')
-rw-r--r-- | g4f/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/__init__.py b/g4f/__init__.py index 57151376..699dc238 100644 --- a/g4f/__init__.py +++ b/g4f/__init__.py @@ -128,7 +128,7 @@ class Completion: return result if stream else ''.join(result) -def get_last_provider(as_dict: bool = False) -> ProviderType: +def get_last_provider(as_dict: bool = False) -> Union[ProviderType, dict[str, str]]: last = debug.last_provider if isinstance(last, BaseRetryProvider): last = last.last_provider |