# Basics of Prompting import {Screenshot} from 'components/screenshot' import INTRO1 from '../../img/introduction/sky.png' import {Bleed} from 'nextra-theme-docs' ## Prompting an LLM You can achieve a lot with simple prompts, but the quality of results depends on how much information you provide it and how well-crafted the prompt is. A prompt can contain information like the *instruction* or *question* you are passing to the model and include other details such as *context*, *inputs*, or *examples*. You can use these elements to instruct the model more effectively to improve the quality of results. Let's get started by going over a basic example of a simple prompt: *Prompt* ```md The sky is ``` *Output:* ```md blue. ``` If you are using the OpenAI Playground or any other LLM playground, you can prompt the model as shown in the following screenshot: Here is a tutorial on how to get started with the OpenAI Playground: