ai

Leaking custom GPTs prompts for fun

OpenAI released the GPT Store earlier this week, allowing users to share their prompts with anyone with ChatGPT Plus. This follows the GPT Builder program's introduction, allowing users to create tailored chatbots for various tasks. The store has reviews and even a revenue-sharing feature for custom GPTs.

I am not swayed by anyone's custom [instruction] GPT, there are many posted to Reddit and around the web touting their benefits. Well, I had some time this weekend and spent some time learning about prompt injection and how to leak the initial prompt.
 


Backstory
 

For creating a custom GPT, you can include specific instructions (duh) as well as include documents and interact with web APIs.
 

Tags

Generating images for your podcast

I listen to Legends of the Old West podcast, it's a western-themed episodic podcast centered around outlaws.The narrator is great, the character actions are descriptive but I'm left wanting more.

With the surge of Stable Diffusion projects, I was inspired to make something AI generated art themed.

What I ended up with is transcribing the podcast audio into text, and then generating images based off of that. Take a look below for an example.


The bulk of the work is done by Vosk, an offline open source speech recognition toolkit. We convert the input MP3 to wav, send it through Vosk and receive a generated JSON output file.

Tags