Welcome to TalkingHeads! 🤖🚀
TalkingHeads is a versatile Python library that serves as an interface for seamless communication with ChatGPT, Claude, Copilot, Gemini, HuggingChat, and Pi 🤖💬
By leveraging the power of browser automation, this library enables users to effortlessly interact with online LLM tools, providing a streamlined and automated approach to generate responses. 🚀✨
Before you begin, please ensure that you have Chrome installed on your system. To successfully pass the Cloudflare robot test, it is necessary to have undetected-chrome. 🌐🔒
pip install talkingheads
or from source:
pip install git+https://github.com/ugorsahin/TalkingHeads
from talkingheads import PiClient
chathead = PiClient()
answer = chathead.interact("Hello, how are you today")
print(answer)
Features | Gemini | Claude | Copilot | HuggingChat | ChatGPT | Pi |
---|---|---|---|---|---|---|
Use without login | ❌ | ❌ | ✅ | ❌ | ❌ | ✅ |
Login* | ➖ | ➖ | ➖ | ✅ | ✅ | ➖ |
Interact | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
New Chat | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Regenerate Response | ✅ | ✅ | ❌ | ❌ | ✅ | ❌ |
Set custom interactions | ❌ | ❌ | ❌ | ❌ | ✅ | ❌ |
Search Web | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ |
Plugins | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ |
Switch Model | ❌ | ❌ | ✅** | ✅ | ✅ | ✅ |
✅ (Auto) Save the conversation as csv, h5, html, json, orc, pkl, xlsx, xml
- ✅ : Functionality exists and implemented
- ❌ : Functionality does not exist
- ➖ : Fuctionality exists but not implemented
* The first time login is manually done for Gemini, Claude and Copilot. Check documentation for first time setup. Please take a look at FAQ to set up. *** The modes of Copilot (Creative, Balanced and Precise) are accessible with model switch. However, it is unclear if they are different models.
Feel free to dive in, share your knowledge, and collaborate. I would be happy to answer any questions or accept your contributions. Let me know in issues if you need anything.
Enhancing our documentation would be fantastic and appreciated. Help me improve documentation with your valuable contributions. Please indicate your issue with a tag enclosed by square brackets: [FEATURE], [BUG], [DOCUMENTATION], [QUESTION]. If you don't know what to write you can write [MISC]. I will prioritize issues with tags.
You can still run your code to connect ChatGPT, follow the below tutorial
export OPENAI_UNAME=<your@email>
export OPENAI_PWD=><password>
from talkingheads import ChatGPTClient
chathead = ChatGPTClient()
answer = chathead.interact("Hello, how are you today")
print(answer)