summaryrefslogtreecommitdiffstats
path: root/g4f/providers/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/providers/types.py')
-rw-r--r--g4f/providers/types.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/g4f/providers/types.py b/g4f/providers/types.py
index f33ea969..50c14431 100644
--- a/g4f/providers/types.py
+++ b/g4f/providers/types.py
@@ -102,4 +102,11 @@ ProviderType = Union[Type[BaseProvider], BaseRetryProvider]
class FinishReason():
def __init__(self, reason: str):
- self.reason = reason \ No newline at end of file
+ self.reason = reason
+
+class Streaming():
+ def __init__(self, data: str) -> None:
+ self.data = data
+
+ def __str__(self) -> str:
+ return self.data \ No newline at end of file