summaryrefslogtreecommitdiffstats
path: root/testing/binghuan/testing.py
diff options
context:
space:
mode:
authorxtekky <98614666+xtekky@users.noreply.github.com>2023-07-11 20:27:55 +0200
committerGitHub <noreply@github.com>2023-07-11 20:27:55 +0200
commitc3b0919f7c22a214f4e5e15f884dcac6d70bb1b0 (patch)
treef52cd8d2ebcd0bde349fb8759c08696ef3614015 /testing/binghuan/testing.py
parentMerge pull request #739 from bagusindrayana/wewordle (diff)
parentupdate encoding (diff)
downloadgpt4free-c3b0919f7c22a214f4e5e15f884dcac6d70bb1b0.tar
gpt4free-c3b0919f7c22a214f4e5e15f884dcac6d70bb1b0.tar.gz
gpt4free-c3b0919f7c22a214f4e5e15f884dcac6d70bb1b0.tar.bz2
gpt4free-c3b0919f7c22a214f4e5e15f884dcac6d70bb1b0.tar.lz
gpt4free-c3b0919f7c22a214f4e5e15f884dcac6d70bb1b0.tar.xz
gpt4free-c3b0919f7c22a214f4e5e15f884dcac6d70bb1b0.tar.zst
gpt4free-c3b0919f7c22a214f4e5e15f884dcac6d70bb1b0.zip
Diffstat (limited to 'testing/binghuan/testing.py')
-rw-r--r--testing/binghuan/testing.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/binghuan/testing.py b/testing/binghuan/testing.py
new file mode 100644
index 00000000..2db0b427
--- /dev/null
+++ b/testing/binghuan/testing.py
@@ -0,0 +1,31 @@
+from BingHuan import ChatCompletion
+
+# Test 1
+response = ChatCompletion.create(model="gpt-3.5-turbo",
+ provider="BingHuan",
+ stream=False,
+ messages=[{'role': 'user', 'content': 'who are you?'}])
+
+print(response)
+
+# Test 2
+# this prompt will return emoji in end of response
+response = ChatCompletion.create(model="gpt-3.5-turbo",
+ provider="BingHuan",
+ stream=False,
+ messages=[{'role': 'user', 'content': 'what you can do?'}])
+
+print(response)
+
+
+# Test 3
+response = ChatCompletion.create(model="gpt-4",
+ provider="BingHuan",
+ 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