diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 20:12:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 20:12:36 +0200 |
commit | da81d1e51aa5c625e4107bf8148cdb3c778f4001 (patch) | |
tree | 01b7677bfd51667e6b8bebe0ac72921aa48cba58 /etc | |
parent | Merge pull request #1862 from hlohaus/nem (diff) | |
parent | Disable Bing integration test (diff) | |
download | gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.gz gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.bz2 gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.lz gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.xz gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.zst gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.zip |
Diffstat (limited to '')
-rw-r--r-- | etc/examples/api.py | 19 | ||||
-rw-r--r-- | etc/examples/ecosia.py (renamed from examples/ecosia.py) | 0 | ||||
-rw-r--r-- | etc/examples/openaichat.py (renamed from examples/openaichat.py) | 0 | ||||
-rw-r--r-- | etc/unittest/integration.py | 1 |
4 files changed, 20 insertions, 0 deletions
diff --git a/etc/examples/api.py b/etc/examples/api.py new file mode 100644 index 00000000..d4d03a77 --- /dev/null +++ b/etc/examples/api.py @@ -0,0 +1,19 @@ +import requests +import json +url = "http://localhost:1337/v1/chat/completions" +body = { + "model": "", + "provider": "MetaAI", + "stream": True, + "messages": [ + {"role": "assistant", "content": "What can you do? Who are you?"} + ] +} +lines = requests.post(url, json=body, stream=True).iter_lines() +for line in lines: + if line.startswith(b"data: "): + try: + print(json.loads(line[6:]).get("choices", [{"delta": {}}])[0]["delta"].get("content", ""), end="") + except json.JSONDecodeError: + pass +print()
\ No newline at end of file diff --git a/examples/ecosia.py b/etc/examples/ecosia.py index 5a2ae520..5a2ae520 100644 --- a/examples/ecosia.py +++ b/etc/examples/ecosia.py diff --git a/examples/openaichat.py b/etc/examples/openaichat.py index 291daa2c..291daa2c 100644 --- a/examples/openaichat.py +++ b/etc/examples/openaichat.py diff --git a/etc/unittest/integration.py b/etc/unittest/integration.py index 379f36b6..1f7fb000 100644 --- a/etc/unittest/integration.py +++ b/etc/unittest/integration.py @@ -19,6 +19,7 @@ class TestProviderIntegration(unittest.TestCase): self.skipTest("nest_asyncio is not installed") def test_bing(self): + self.skipTest("Not working") client = Client(provider=Bing) response = client.chat.completions.create(DEFAULT_MESSAGES, "", response_format={"type": "json_object"}) self.assertIsInstance(response, ChatCompletion) |