diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-11 19:09:50 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-11 19:09:50 +0200 |
commit | d2ba13c91064f910ae571b410338cb15b221707c (patch) | |
tree | 5cf17d0c9f5d3104454c3c0ec1bf39231ac8b5fb /testing/ora_test.py | |
parent | quora (poe) [gpt-4/3.5] create bot feature (diff) | |
download | gpt4free-d2ba13c91064f910ae571b410338cb15b221707c.tar gpt4free-d2ba13c91064f910ae571b410338cb15b221707c.tar.gz gpt4free-d2ba13c91064f910ae571b410338cb15b221707c.tar.bz2 gpt4free-d2ba13c91064f910ae571b410338cb15b221707c.tar.lz gpt4free-d2ba13c91064f910ae571b410338cb15b221707c.tar.xz gpt4free-d2ba13c91064f910ae571b410338cb15b221707c.tar.zst gpt4free-d2ba13c91064f910ae571b410338cb15b221707c.zip |
Diffstat (limited to '')
-rw-r--r-- | testing/ora_test.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/ora_test.py b/testing/ora_test.py new file mode 100644 index 00000000..5bc24492 --- /dev/null +++ b/testing/ora_test.py @@ -0,0 +1,29 @@ +# inport ora +import ora + +# create model +model = ora.CompletionModel.create( + system_prompt = 'You are ChatGPT, a large language model trained by OpenAI. Answer as concisely as possible', + description = 'ChatGPT Openai Language Model', + name = 'gpt-3.5') + +print(model.id) + +# init conversation (will give you a conversationId) +init = ora.Completion.create( + model = model, + prompt = 'hello world') + +print(init.completion.choices[0].text) + +while True: + # pass in conversationId to continue conversation + + prompt = input('>>> ') + response = ora.Completion.create( + model = model, + prompt = prompt, + includeHistory = True, + conversationId = init.id) + + print(response.completion.choices[0].text)
\ No newline at end of file |