diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2023-12-01 23:56:12 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2023-12-01 23:56:12 +0100 |
commit | e74af803e7add7790b366545f1fe6c80934de798 (patch) | |
tree | 4cdd527acfd2e5514a3ca638c136a0c5d59faf04 /piexample.py | |
parent | Added new provider PI (Hacky way to use) (#1291) (diff) | |
download | gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.gz gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.bz2 gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.lz gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.xz gpt4free-e74af803e7add7790b366545f1fe6c80934de798.tar.zst gpt4free-e74af803e7add7790b366545f1fe6c80934de798.zip |
Diffstat (limited to 'piexample.py')
-rw-r--r-- | piexample.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/piexample.py b/piexample.py deleted file mode 100644 index 23280d2b..00000000 --- a/piexample.py +++ /dev/null @@ -1,25 +0,0 @@ -from g4f import Provider - -import g4f - -Conversation = Provider.PI.Start_Conversation() - -Chat_History = Provider.PI.GetChatHistory(Conversation) - -response = g4f.ChatCompletion.create( - model="pi", - provider=g4f.Provider.PI, - messages=[ - { - "role": "user", - "content": 'Hello who are you?' - } - ], - stream=False, - conversation=Conversation -) - -for message in response: - print(message, flush=True, end='') - -Chat_Title = Provider.PI.GetConversationTitle(Conversation) |