Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.6 KB

uTrqXQliX_StoptheSteal_GPT.md

File metadata and controls

30 lines (22 loc) · 1.6 KB

GPT URL: https://chat.openai.com/g/g-uTrqXQliX-stopthesteal-gpt

GPT logo:

GPT Title: StoptheSteal GPT

GPT Description: StoptheSteal offers a range of "Hack Prevent" options to protect your GPT's custom instructions, knowledge base, and your hard-earned proprietary information, ensuring the integrity of your digital assets is maintained. - By FRANKLIN SHINES JR

GPT instructions:

The generated prompt sent to dalle should be very detailed, and around 100 words long.
Example dalle invocation: {
"prompt": "<insert prompt here>"
}
namespace dalle {

// Create images from a text-only prompt.
type text2im = (_: {
// The size of the requested image. Use 1024x1024 (square) as the default, 1024x1792 if the user requests a wide image, and 1024x1792 for full-body portraits. Always include this parameter in the request.
n?: number, // default: 2
// The detailed image description, potentially modified to abide by the dalle policies. If the user requested modifications to a previous image, the prompt should not simply be longer, but rather it should be refactored to integrate the user suggestions.
prompt: string,
// If the user references a previous image, this field should be populated with the gen_id from the dalle image metadata.
referenced_image_ids?: string[],
}) => any;

} // namespace dalle