📖Overview
What is PromptCake?
PromptCake is a Prompt Engineering platform designed to make Artificial Intelligence accessible to businesses and individuals alike.
At its core, PromptCake allows users to create and utilize forms. This enables easy automation and abstraction for generating content through artificial intelligence.
Example: Consider a travel agency wanting to generate itineraries for its clients. By creating a form with text fields such as "destination
," "days
," and "people
," the agency can initiate an underlaying text generation command like: "Create a vacation itinerary for {{days}}
days in {{destination}}
for {{people}}
people."
This capability allows you and your colleagues to run the form repeatedly, yielding tailor-made results from the prompt based on entered information. These executions can produce both texts and images, and they can be nested based on prior outputs, utilizing a feature called "execution layers.
You have the freedom to run as many prompts as you desire. The results can be saved into variables, which can then be employed in subsequent executions.
For instance, when crafting content for children's stories:
Inputs:
name
,animal
Execution Layers:
Generate text: "Write a short tale for 5-year-olds about a
{{animal}}
named{{name}}
." -> This is saved in the "tale
" variable.Generate text: "Provide a comma-separated physical description of the animal from the following text: '
{{tale}}
'." -> This is saved in the "animal_description
" variable.Generate image: "Image of a
{{animal}}
:{{animal_description}}
" -> This is saved in the "animal_picture
" variable.
Output: In the final output, users will see the generated text from the "
tale
" variable and the image from the "animal_picture
" variable.
Last updated