Activity
Mon
Wed
Fri
Sun
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
What is this?
Less
More

Memberships

5 contributions to ChatGPT Users
Saving ChatGPT History
Hi All, what is the best way to save your ChatGBP history, htis is the third time now there has been an issue viewing my history which at the moment is not avialbe once again. Apart fropm scraping the entire message when you receive replies is there a more efficent way of saving your messages and previous repliesreceived from ChatGPT?
1 like • Mar '23
This nightmare is why I bought a product specially designed to save prompts and histories! Great insurance against stress!!
Chat History Unavailable, Getting Nervous
Group, have you seen this before? Chat history being temporarily down? Does it come back? I had some really good content in my history that I thought I could get back to, but now it's gone. Hoping it's not gone forever.
1 like • Mar '23
This nightmare is why I bought a product specially designed to save prompts and histories! Great insurance against stress!!
Text To Speech ChatGPT Assistant
Here is a small Python script that will allow you to interact with ChatGPT using your voice instead of a keyboard. It will also voice a response using the Python pyttsx3 library. You need to install a few libraries for it to work like openai, pyaudio, and SpeechRecognition. import openai import pyttsx3 import speech_recognition as sr import time #Set your OpenAI api key openai.api_key = "" #Init the text-to-speech engine engine = pyttsx3.init() def transcribe_audio_to_text(filename): recognizer = sr.Recognizer() with sr.AudioFile(filename) as source: audio = recognizer.record(source) try: return recognizer.recognize_google(audio) except: print('Skipping unknown error') def generate_response(prompt): response = openai.Completion.create( engine="text-davinci-003", prompt=prompt, max_tokens=4000, n=1, stop=None, temperature=0.5, ) return response["choices"][0]["text"] def speak_text(text): engine.say(text) engine.runAndWait() def main(): while True: #Wait for user to say "Larry", or call your assistant anything you wish print("Say 'Larry' to start recording your question...") with sr.Microphone() as source: recognizer = sr.Recognizer() audio = recognizer.listen(source) try: transcription = recognizer.recognize_google(audio) if transcription.lower() == "larry": #Record Audio filename = "input.wav" print("Yes human, what is your query?") with sr.Microphone() as source: recognizer = sr.Recognizer() source.pause_threshold = 1 audio = recognizer.listen(source, phrase_time_limit=None, timeout=None) with open(filename, "wb") as f: f.write(audio.get_wav_data()) #Transcribe audio to text text = transcribe_audio_to_text(filename) if text: print(f"You said: {text}") #Generate response using GPT-3 response = generate_response(text) print(f"Larry says: {response}") #Read response using text-to-speech speak_text(response) except Exception as e: print("An error has occurred: {}".format(e)) if __name__ == "__main__":
1 like • Mar '23
Terry, I am on a Mac laptop and have no idea what you mean by "You need to install a few libraries for it to work like openai, pyaudio, and SpeechRecognition." Can you please provide more explicit guidance for those of us ignorant about Python?
1 like • Mar '23
@Terry McCann Awesome! Thank you so much. 😍
Chat GPT 4
I read somewhere that GPT 4 is coming next week. Will it be included in the course?
1 like • Mar '23
"GPT 4 is coming next week" is FAKE news being spread all over the internet from one questionable source!
HELP needed for how to generate multiple choice quizzes in an online course.
I am completely lost about how to use ChatGPT to create really good multiple choice questions for an online course I am creating. Can anyone help please? I present content via online videos, each about 5-7 mins long, and want to have a learning evaluation quiz at the end of each module which typically has 5 videos.
1 like • Mar '23
@Jb Benton Thank you very much! 😍
1 like • Mar '23
@Jason West Thanks but I don't have any ready cash and you're not offering any full scholarships, right?
1-5 of 5
Gad Amer
2
10points to level up
@gad-amer-4721
No labels

Active 932d ago
Joined Feb 18, 2023
Powered by