From f545f4b479d3d8732828f758efaac20152b4c104 Mon Sep 17 00:00:00 2001 From: hp256 <971748116@qq.com> Date: Tue, 23 May 2023 17:03:26 +0800 Subject: add gptworldai --- testing/gptworldai_test.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 testing/gptworldai_test.py (limited to 'testing') diff --git a/testing/gptworldai_test.py b/testing/gptworldai_test.py new file mode 100644 index 00000000..3dfb32ce --- /dev/null +++ b/testing/gptworldai_test.py @@ -0,0 +1,18 @@ +import gptworldAi + +# single completion +for chunk in gptworldAi.Completion.create("你是谁", "127.0.0.1:7890"): + print(chunk, end="", flush=True) +print() + +# chat completion +message = [] +while True: + prompt = input("请输入问题:") + message.append({"role": "user", "content": prompt}) + text = "" + for chunk in gptworldAi.ChatCompletion.create(message, '127.0.0.1:7890'): + text = text + chunk + print(chunk, end="", flush=True) + print() + message.append({"role": "assistant", "content": text}) -- cgit v1.2.3