summaryrefslogtreecommitdiffstats
path: root/testing/binghuan/testing.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/binghuan/testing.py')
-rw-r--r--testing/binghuan/testing.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/binghuan/testing.py b/testing/binghuan/testing.py
index e69de29b..e03c598d 100644
--- a/testing/binghuan/testing.py
+++ b/testing/binghuan/testing.py
@@ -0,0 +1,30 @@
+from BingHuan import ChatCompletion
+
+# Test 1
+response = ChatCompletion.create(model="gpt-3.5-turbo",
+ provider="Wewordle",
+ stream=False,
+ messages=[{'role': 'user', 'content': 'who are you?'}])
+
+print(response)
+
+# Test 2
+response = ChatCompletion.create(model="gpt-3.5-turbo",
+ provider="Wewordle",
+ stream=False,
+ messages=[{'role': 'user', 'content': 'what you can do?'}])
+
+print(response)
+
+
+# Test 3
+response = ChatCompletion.create(model="gpt-3.5-turbo",
+ provider="Wewordle",
+ 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