chatgpt-python
chatgpt-python copied to clipboard
Unofficial Python SDK for OpenAI's ChatGPT
Hello. It seems like you have copied code from https://github.com/rawandahmad698/PyChatGPT/blob/master/src/pychatgpt/classes/openai.py & https://github.com/rawandahmad698/PyChatGPT/blob/master/src/pychatgpt/classes/openai.py#L128 [Here](https://github.com/labteral/chatgpt-python/blob/master/chatgpt/chatgpt.py#L42) Additionally, You have stolen 4-6 days of work on finding the right steps, using the right tools....
Some countries like China, Hk, They need proxy access to chatgpt How to use a proxy in chatgpt-python like socks5, http proxy and so on.
Hey, I am trying to ask ChatGPT something but I get an Error everytime. My Code is: ```python from chatgpt import Conversation convo = Conversation(access_token="INSERT API TOKEN HERE") print("> Design...
It seems there is no `accessToken` in the response  Besides, could you consider adding `proxy` parameters in `HTTPSession`?
After installing chatgpt and running it, I get: OSError: dlopen(/Users/me/anaconda3/lib/python3.9/site-packages/tls_client/dependencies/tls-client-x86.dylib, 6): no suitable image found. Did find: /Users/me/anaconda3/lib/python3.9/site-packages/tls_client/dependencies/tls-client-x86.dylib: cannot load 'tls-client-x86.dylib' (load command 0x80000034 is unknown) /Users/me/anaconda3/lib/python3.9/site-packages/tls_client/dependencies/tls-client-x86.dylib: cannot load 'tls-client-x86.dylib'...
` Traceback (most recent call last): File "/Users/kevin/project_golang/src/github.com/IPM/python/chatgpt_wrapper/chatgptcli.py", line 11, in for chunk in conversation.stream("We are going to start a conversation. I will speak English and you will speak Portuguese."):...
Thanks for the update - excited to try streaming. Neither .stream nor .chat are working for me since the last update though: > conversation.chat(query) Traceback (most recent call last): File...
I'm curious about the cause (and potential fix) on the large difference in quality between this tool and the online tool at openai.com. Here's an example dialogue: User: `Could you...
using python 3.10 my code was ```python from chatgpt import Conversation conversation = Conversation() print( conversation.chat("Hello!") ) ``` I got ``` Traceback (most recent call last): File "...", line 6,...