Thinklanceai /
agentkeeper
Own your AI memory — import ChatGPT, Claude and Gemini exports, see what each AI knows about you. Checkpoint/restore and cross-model continuity for agents.
75/100 healthLoading repository data…
honestmk99 / repository
About A python package that creates a voice interface for interacting with OpenAI's ChatGPT
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A voice interface for OpenAI's ChatGPT 🎙
Credit to @terry3041 for pyChatGPT ❤️
This package detects microphone input and coverts it to text using Google's Speech Recognition API. It then opens ChatGPT and inputs the recognized text using selenium.
It can be used with a wake word, and it can also use text to speech to repeat ChatGPT's answer to the query. These arguements are specified in the creation of the class (see Getting Started)
pip install speechgpt
It is not uncommon that there are errors when installing pyaudio. If you are on macOS you may have to use homebrew to install portaudio.
Follow these steps in @terry3041's README.md
from speechgpt import SpeechGPT
session_token = "<__Secure-next-auth.session-token cookie from https://chat.openai.com/chat>"
bot = SpeechGPT(session_token=session_token) # Initializing the bot
bot.listen() # The bot will start listening and respond to whatever it is prompted with using ChatGPT
If the bot is initialized with a wake_word value then it will wait until it hears that phrase when bot.listen() is called, and then it will start listening.
If the bot is initialized with voice_on = True as an arguement, then it will use text to speech to play back ChatGPT's response.
# How to initialize SpeechGPT with wake_word and voice_on
bot = SpeechGPT(session_token=session_token,
wake_word="wake up",
voice_on=True)
.listen() only runs one cycle, so it needs to be put in a loop for it to answer more than one prompt
while True:
bot.listen()
If the bot hears "quit" at any stage after .listen() is called then it will quit.
This package is not affiliated with OpenAI in any way. Use at your own risk. I am not responsible for any damage or harm caused by this project. Please read OpenAI's Terms of Service before using this module.
This project is licensed under the MIT License - see the LICENSE file for details.
Selected from shared topics, language and repository description—not editorial ratings.
Thinklanceai /
Own your AI memory — import ChatGPT, Claude and Gemini exports, see what each AI knows about you. Checkpoint/restore and cross-model continuity for agents.
75/100 healthse7enack /
Coeus is an A.I. Computing Assistant for MacOS that can answer just about any question you may have reading back the responses if you choose. It also creates realtime images using A.I., all by leveraging the OpenAI API.
69/100 healthemanuelevivoli /
This book is about AI, Machine Learning and Deep learning, and was generated using [chatGPT](https://chat.openai.com)
34/100 healthCyrilFrancois /
Using an Agentic Microservices Architecture, this is a showcase of a simple LLM (chatGPT) + RAG (NeoJ) + MiddleBack/ETL (Python) about requesting in natural langage hospitals data.
47/100 healthwanetty /
This is a Python script for a Burp Suite extension that adds a new tab to the Burp Suite interface. The new tab includes a table with information about the HTTP requests and responses captured by Burp Suite, and a text area for the user to interact with an OpenAI chatbot.
41/100 healthhanit-com /
🤖 An intelligent, context-aware chatbot that can be utilized to answer questions about your own documented data.
29/100 health