diff options
author | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-07-11 19:13:45 +0200 |
---|---|---|
committer | Bagus Indrayana <bagusindrayanaindo@gmail.com> | 2023-07-11 19:13:45 +0200 |
commit | 86088bef83fb70cbc84fd2475446ca9fb79c460b (patch) | |
tree | 05b262646bfad969869e239401a5aab2ed1fb891 /testing/binghuan/testing.py | |
parent | emojin encoding problem idk how to fix it (diff) | |
download | gpt4free-86088bef83fb70cbc84fd2475446ca9fb79c460b.tar gpt4free-86088bef83fb70cbc84fd2475446ca9fb79c460b.tar.gz gpt4free-86088bef83fb70cbc84fd2475446ca9fb79c460b.tar.bz2 gpt4free-86088bef83fb70cbc84fd2475446ca9fb79c460b.tar.lz gpt4free-86088bef83fb70cbc84fd2475446ca9fb79c460b.tar.xz gpt4free-86088bef83fb70cbc84fd2475446ca9fb79c460b.tar.zst gpt4free-86088bef83fb70cbc84fd2475446ca9fb79c460b.zip |
Diffstat (limited to '')
-rw-r--r-- | testing/binghuan/testing.py | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/testing/binghuan/testing.py b/testing/binghuan/testing.py index 6c84cfae..2c510914 100644 --- a/testing/binghuan/testing.py +++ b/testing/binghuan/testing.py @@ -1,14 +1,12 @@ from BingHuan import ChatCompletion -# text = "Hello, this is Bing. I can help you find information on the web, generate content such as poems, stories, code, essays, songs, celebrity parodies and more. I can also help you with rewriting, improving, or optimizing your content. Is there anything specific you would like me to help you with? 😊" -# print(text.encode('utf-8')) -# # Test 1 -# response = ChatCompletion.create(model="gpt-3.5-turbo", -# provider="BingHuan", -# stream=False, -# messages=[{'role': 'user', 'content': 'who are you?'}]) +# Test 1 +response = ChatCompletion.create(model="gpt-3.5-turbo", + provider="BingHuan", + stream=False, + messages=[{'role': 'user', 'content': 'who are you?'}]) -# print(response) +print(response) # Test 2 response = ChatCompletion.create(model="gpt-3.5-turbo", @@ -19,14 +17,14 @@ response = ChatCompletion.create(model="gpt-3.5-turbo", 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?'}, -# ]) +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 +print(response)
\ No newline at end of file |