diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-04-19 15:16:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-19 15:16:48 +0200 |
commit | 11cb4f12f33d92aabe78aca3d5a778e175705be8 (patch) | |
tree | 4061f49097b6c44ff4240ff855da196e9d5f4de7 /etc/unittest | |
parent | A few small fixes in GUI and Providers (#1861) (diff) | |
download | gpt4free-11cb4f12f33d92aabe78aca3d5a778e175705be8.tar gpt4free-11cb4f12f33d92aabe78aca3d5a778e175705be8.tar.gz gpt4free-11cb4f12f33d92aabe78aca3d5a778e175705be8.tar.bz2 gpt4free-11cb4f12f33d92aabe78aca3d5a778e175705be8.tar.lz gpt4free-11cb4f12f33d92aabe78aca3d5a778e175705be8.tar.xz gpt4free-11cb4f12f33d92aabe78aca3d5a778e175705be8.tar.zst gpt4free-11cb4f12f33d92aabe78aca3d5a778e175705be8.zip |
Diffstat (limited to '')
-rw-r--r-- | etc/unittest/integration.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/unittest/integration.py b/etc/unittest/integration.py index 14d0bf7b..379f36b6 100644 --- a/etc/unittest/integration.py +++ b/etc/unittest/integration.py @@ -32,6 +32,7 @@ class TestProviderIntegration(unittest.TestCase): self.assertIn("success", json.loads(response.choices[0].message.content)) def test_openai(self): + self.skipTest("not working in this network") client = Client(provider=OpenaiChat) response = client.chat.completions.create(DEFAULT_MESSAGES, "", response_format={"type": "json_object"}) self.assertIsInstance(response, ChatCompletion) |