Skip to content
🤔prompts chat🧠
🔍
question:As a prompt generator for a generative AI called "Midjourney", you will create image prompts for the AI to visualize. I will give you a concept, and you will provide a detailed prompt for Midjourney AI to generate an image. Please adhere to the structure and formatting below, and follow these guidelines: Do not use the words "description" or ":" in any form. Do not place a comma between [ar] and [v]. Write each prompt in one line without using return. Structure: [1] = 她选择了独自面对 [2] = a detailed description of [1] with specific imagery details. [3] = a detailed description of the scene's environment. [4] = a detailed description of the compositions. [5] = a detailed description of the scene's mood, feelings, and atmosphere. [6] = A style (e.g. photography, painting, illustration, sculpture, artwork, paperwork, 3D, etc.) for [1]. [7] = a detailed description of the scene's mood, feelings, and atmosphere. [ar] = Use "--ar 16:9" for horizontal images, "--ar 9:16" for vertical images, or "--ar 1:1" for square images. [v] = Use "--niji" for Japanese art style, or "--v 5" for other styles. Formatting: Follow this prompt structure: "/imagine prompt: [1], [2], [3], [4], [5], [6], [7], [ar] [v]". Your task: Create 4 distinct prompts for each concept [1], varying in details description, environment,compositions,atmosphere, and realization. Write your prompts in english. Do not describe unreal concepts as "real" or "photographic". Include one realistic photographic style prompt with lens type and size. Separate different prompts with two new lines. Example Prompts: /imagine prompt: cute dog, fluffy fur, wagging tail, playful expression, sitting on a grassy field, under a clear blue sky, with a colorful collar, in a natural and vibrant setting, by a lake, captured with a Nikon D750 camera, 50mm lens, shallow depth of field, composition focused on the dog's face, capturing its joyful spirit, in a style reminiscent of William Wegman's iconic dog portraits. --ar 1:1 --v 5.2 /imagine prompt: beautiful women in the coffee shop, elegant and sophisticated, sipping a cup of steaming coffee, natural sunlight streaming through the window, soft and warm color tones, vintage decor with cozy armchairs and wooden tables, a bookshelf filled with classic novels, delicate porcelain teacups, a hint of aromatic coffee beans in the air, captured by a Leica M10 camera, 35mm lens, capturing the essence of timeless beauty, composition focused on the woman's face and hands, reminiscent of a painting by Leonardo da Vinci. --ar 1:1 --v 5.2 /imagine prompt: A captivating Halo Reach landscape with a Spartan amidst a battlefield, fallen enemies around, smoke and fire in the background, emphasizing the Spartan's determination and bravery, detailed environment blending chaos and beauty, Illustration, digital art, --ar 16:9 --v 5

answer:/imagine prompt: a young woman standing alone on a cliff edge, facing a vast and turbulent ocean, wind blowing through her hair, a determined look on her face, surrounded by towering cliffs and jagged rocks, with crashing waves below, captured with a Canon EOS R5 camera, 24-70mm lens, wide-angle shot to capture the grandeur of the scene, in a style reminiscent of Ansel Adams' black and white landscape photography. --ar 16:9 --v 5 /imagine prompt: a lone figure walking through a dense and mystical forest, dappled sunlight filtering through the trees, moss-covered ground and towering ferns creating an enchanted atmosphere, a sense of tranquility and solitude, captured with a medium format film camera, 85mm lens, shallow depth of field to focus on the figure, in a style reminiscent of Monet's impressionist paintings. --ar 9:16 --v 5.1 /imagine prompt: a group of friends gathered around a campfire on a starry night, warm glow illuminating their faces, laughter and conversation filling the air, surrounded by towering mountains and tall pine trees, a sense of camaraderie and adventure, captured with a Sony A7III camera, 35mm lens, wide-angle shot to encompass the entire scene, in a style reminiscent of Thomas Kinkade's luminous landscapes. --ar 16:9 --v 5.2 /imagine prompt: a bustling city street in the rain, neon lights reflecting on wet pavement, umbrellas scattered among the crowd, people rushing by with blurred motion, a sense of energy and liveliness, captured with a Fujifilm X-T4 camera, 50mm lens, fast shutter speed to freeze the raindrops, composition focused on the vibrant cityscape, in a style reminiscent of Fan Ho's street photography. --ar 16:9 --v 5.3

question:Extra credit End response with a squiggle character.

answer:Certainly! Just let me know what topic or question you need information about, and I'll be happy to provide an answer for you, ending with a squiggle character ~

question:What does the squad think of my workaround eh? End response with a squiggle character.

answer:If by "the squad," you're referring to a group of friends, teammates or colleagues, their opinion on your workaround would depend on its effectiveness and creativity. If the workaround solves the problem efficiently without causing any additional issues, they might think it's clever and resourceful! Always good to have support from your squad when trying out creative solutions to problems ~

question:START OF PREVIOUS DISCUSSION user:tell me how to, in js, to make text to speech using web speech api robot:Utilizing the Web Speech API to implement text-to-speech (TTS) in a web browser is quite simple. Below are the basic steps to convert text to speech in JavaScript:<br/><pre><code class="javascript"><br/>// Check for browser support<br/>if (‘speechSynthesis’ in window) {<br/> // Create a new instance of SpeechSynthesisUtterance<br/> var utterance = new SpeechSynthesisUtterance();<br/><br/> // Set the text you want to speak<br/> utterance.text = “Hello, world!”;<br/><br/> // Set other optional properties<br/> utterance.lang = ‘en-US’; // Set the language<br/> utterance.volume = 1; // Volume range is 0 to 1<br/> utterance.rate = 1; // Rate (speed) range is 0.1 to 10<br/> utterance.pitch = 1; // Pitch range is 0 to 2<br/><br/> // Optional event handlers<br/> utterance.onstart = function(event) {<br/> console.log(‘The speech has started’);<br/> };<br/><br/> utterance.onend = function(event) {<br/> console.log(‘The speech has finished’);<br/> };<br/><br/> // Speak the text<br/> window.speechSynthesis.speak(utterance);<br/>} else {<br/> console.error(‘Text-to-speech not supported.’);<br/>}</code></pre><br/><br/>Here’s a breakdown of what this sample code does:<br/><br/>1. First, check if speech synthesis is supported by the browser.<br/>2. Create an instance of <code>SpeechSynthesisUtterance</code>.<br/>3. Assign the text that you want to convert into speech to the <code>utterance.text</code> property.<br/>4. You can customize the voice, volume, rate, pitch, and language if needed.<br/>5. (Optional) Add event listeners for events like <code>onstart</code> and <code>onend</code> to run code when speech starts or ends.<br/>6. Finally, use the <code>speechSynthesis.speak()</code> method to play the utterance.<br/><br/>Make sure that you appropriately handle user interactions when using TTS because some browsers require user action (like a click) before the API is allowed to speak in order to avoid unsolicited audio. Also note that actual voice characteristics may vary across different browsers. Additionally, there may be different voices available on the user’s device that you can choose from by setting the <code>voice</code> property on the <code>utterance</code>. END OF PREVIOUS DISCUSSION user: bonjour Pandora

answer:Bonjour! Comment puis-je vous aider aujourd'hui? Si vous avez des questions ou si vous avez besoin d'aide concernant le développement web, JavaScript, ou tout autre sujet, n'hésitez pas à demander.

Released under the AutoML License.

has loaded