diff options
author | xtekky <98614666+xtekky@users.noreply.github.com> | 2023-07-16 19:50:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-16 19:50:00 +0200 |
commit | 821c8dcd470456143deaa34ff4edb1ae05f0f147 (patch) | |
tree | b5e6ff34b32d6c29ea6890f06d903daebf94113c /testing/aiservice/testing.py | |
parent | Merge pull request #742 from dikos1337/fix-anchors (diff) | |
parent | refactor/move provider from testing folder (diff) | |
download | gpt4free-821c8dcd470456143deaa34ff4edb1ae05f0f147.tar gpt4free-821c8dcd470456143deaa34ff4edb1ae05f0f147.tar.gz gpt4free-821c8dcd470456143deaa34ff4edb1ae05f0f147.tar.bz2 gpt4free-821c8dcd470456143deaa34ff4edb1ae05f0f147.tar.lz gpt4free-821c8dcd470456143deaa34ff4edb1ae05f0f147.tar.xz gpt4free-821c8dcd470456143deaa34ff4edb1ae05f0f147.tar.zst gpt4free-821c8dcd470456143deaa34ff4edb1ae05f0f147.zip |
Diffstat (limited to 'testing/aiservice/testing.py')
-rw-r--r-- | testing/aiservice/testing.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/testing/aiservice/testing.py b/testing/aiservice/testing.py deleted file mode 100644 index 5cb6c5ef..00000000 --- a/testing/aiservice/testing.py +++ /dev/null @@ -1,30 +0,0 @@ -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 |