forked from xtekky/gpt4free
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
from .model import * | ||
from .client import * | ||
from .include import * | ||
from .integration import * | ||
|
||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,39 @@ | ||
import unittest | ||
import json | ||
|
||
try: | ||
import nest_asyncio | ||
has_nest_asyncio = True | ||
except ImportError: | ||
has_nest_asyncio = False | ||
|
||
from g4f.client import Client, ChatCompletion | ||
from g4f.Provider import Bing, OpenaiChat | ||
from g4f.client import Client, AsyncClient, ChatCompletion | ||
from g4f.Provider import Copilot, DDG | ||
|
||
DEFAULT_MESSAGES = [{"role": "system", "content": 'Response in json, Example: {"success": false}'}, | ||
{"role": "user", "content": "Say success true in json"}] | ||
|
||
class TestProviderIntegration(unittest.TestCase): | ||
def setUp(self): | ||
if not has_nest_asyncio: | ||
self.skipTest("nest_asyncio is not installed") | ||
|
||
def test_bing(self): | ||
self.skipTest("Not working") | ||
client = Client(provider=Bing) | ||
client = Client(provider=Copilot) | ||
response = client.chat.completions.create(DEFAULT_MESSAGES, "", response_format={"type": "json_object"}) | ||
self.assertIsInstance(response, ChatCompletion) | ||
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) | ||
client = Client(provider=DDG) | ||
response = client.chat.completions.create(DEFAULT_MESSAGES, "", response_format={"type": "json_object"}) | ||
self.assertIsInstance(response, ChatCompletion) | ||
self.assertIn("success", json.loads(response.choices[0].message.content)) | ||
|
||
class TestChatCompletionAsync(unittest.IsolatedAsyncioTestCase): | ||
|
||
async def test_bing(self): | ||
client = AsyncClient(provider=Copilot) | ||
response = await client.chat.completions.create(DEFAULT_MESSAGES, "", response_format={"type": "json_object"}) | ||
self.assertIsInstance(response, ChatCompletion) | ||
self.assertIn("success", json.loads(response.choices[0].message.content)) | ||
|
||
async def test_openai(self): | ||
client = AsyncClient(provider=DDG) | ||
response = await client.chat.completions.create(DEFAULT_MESSAGES, "", response_format={"type": "json_object"}) | ||
self.assertIsInstance(response, ChatCompletion) | ||
self.assertIn("success", json.loads(response.choices[0].message.content)) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters