diff options
author | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-07-11 19:44:20 +0200 |
---|---|---|
committer | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-07-11 19:44:20 +0200 |
commit | 633f2312dc6b19c6f8b510c9ca89a8defe1a0f13 (patch) | |
tree | 94e89a9096401e765a06b5bc5f682f813ea1b12f /testing/aiservice/testing.py | |
parent | add provider (diff) | |
download | gpt4free-633f2312dc6b19c6f8b510c9ca89a8defe1a0f13.tar gpt4free-633f2312dc6b19c6f8b510c9ca89a8defe1a0f13.tar.gz gpt4free-633f2312dc6b19c6f8b510c9ca89a8defe1a0f13.tar.bz2 gpt4free-633f2312dc6b19c6f8b510c9ca89a8defe1a0f13.tar.lz gpt4free-633f2312dc6b19c6f8b510c9ca89a8defe1a0f13.tar.xz gpt4free-633f2312dc6b19c6f8b510c9ca89a8defe1a0f13.tar.zst gpt4free-633f2312dc6b19c6f8b510c9ca89a8defe1a0f13.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 |