diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-20 06:12:34 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-09-20 06:12:34 +0200 |
commit | 82bd6f91808a383781807262c4ae1f3de9740531 (patch) | |
tree | 9a12306a3dda5e883bc21e13b2f50294892a2fc9 /g4f/Provider/H2o.py | |
parent | ~ | Merge pull request #914 from hlohaus/lesh (diff) | |
download | gpt4free-82bd6f91808a383781807262c4ae1f3de9740531.tar gpt4free-82bd6f91808a383781807262c4ae1f3de9740531.tar.gz gpt4free-82bd6f91808a383781807262c4ae1f3de9740531.tar.bz2 gpt4free-82bd6f91808a383781807262c4ae1f3de9740531.tar.lz gpt4free-82bd6f91808a383781807262c4ae1f3de9740531.tar.xz gpt4free-82bd6f91808a383781807262c4ae1f3de9740531.tar.zst gpt4free-82bd6f91808a383781807262c4ae1f3de9740531.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/H2o.py | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/g4f/Provider/H2o.py b/g4f/Provider/H2o.py index 30090a58..d92bd6d1 100644 --- a/g4f/Provider/H2o.py +++ b/g4f/Provider/H2o.py @@ -23,7 +23,7 @@ class H2o(AsyncGeneratorProvider): **kwargs ) -> AsyncGenerator: model = model if model else cls.model - headers = {"Referer": "https://gpt-gm.h2o.ai/"} + headers = {"Referer": cls.url + "/"} async with ClientSession( headers=headers @@ -36,14 +36,14 @@ class H2o(AsyncGeneratorProvider): "searchEnabled": "true", } async with session.post( - "https://gpt-gm.h2o.ai/settings", + f"{cls.url}/settings", proxy=proxy, data=data ) as response: response.raise_for_status() async with session.post( - "https://gpt-gm.h2o.ai/conversation", + f"{cls.url}/conversation", proxy=proxy, json={"model": model}, ) as response: @@ -71,7 +71,7 @@ class H2o(AsyncGeneratorProvider): }, } async with session.post( - f"https://gpt-gm.h2o.ai/conversation/{conversationId}", + f"{cls.url}/conversation/{conversationId}", proxy=proxy, json=data ) as response: @@ -83,6 +83,14 @@ class H2o(AsyncGeneratorProvider): if not line["token"]["special"]: yield line["token"]["text"] + async with session.delete( + f"{cls.url}/conversation/{conversationId}", + proxy=proxy, + json=data + ) as response: + response.raise_for_status() + + @classmethod @property def params(cls): |