diff options
author | xtekky <98614666+xtekky@users.noreply.github.com> | 2023-07-11 20:28:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 20:28:28 +0200 |
commit | 99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92 (patch) | |
tree | 62e59c453836ebdc381c6da22ceb030611c2598b /testing/aiservice/testing.py | |
parent | Merge pull request #740 from bagusindrayana/binghuan (diff) | |
parent | add readme (diff) | |
download | gpt4free-99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92.tar gpt4free-99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92.tar.gz gpt4free-99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92.tar.bz2 gpt4free-99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92.tar.lz gpt4free-99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92.tar.xz gpt4free-99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92.tar.zst gpt4free-99cd4088e5c9e98e39ce2b5d94bcc6bbc3190e92.zip |
Diffstat (limited to 'testing/aiservice/testing.py')
-rw-r--r-- | testing/aiservice/testing.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/aiservice/testing.py b/testing/aiservice/testing.py new file mode 100644 index 00000000..5cb6c5ef --- /dev/null +++ b/testing/aiservice/testing.py @@ -0,0 +1,30 @@ +from AiService import ChatCompletion + +# Test 1 +response = ChatCompletion.create(model="gpt-3.5-turbo", + provider="AiService", + stream=False, + messages=[{'role': 'user', 'content': 'who are you?'}]) + +print(response) + +# Test 2 +response = ChatCompletion.create(model="gpt-3.5-turbo", + provider="AiService", + stream=False, + messages=[{'role': 'user', 'content': 'what you can do?'}]) + +print(response) + + +# Test 3 +response = ChatCompletion.create(model="gpt-3.5-turbo", + provider="AiService", + stream=False, + messages=[ + {'role': 'user', 'content': 'now your name is Bob'}, + {'role': 'assistant', 'content': 'Hello Im Bob, you asistant'}, + {'role': 'user', 'content': 'what your name again?'}, + ]) + +print(response)
\ No newline at end of file |