Commit 6f1adfec

Stainless Bot <107565488+stainless-bot@users.noreply.github.com>
2024-01-04 03:04:23
chore(internal): update formatting (#1041)
1 parent bcc54ea
Changed files (1)
examples
examples/picture.py
@@ -8,12 +8,14 @@ openai = OpenAI()
 prompt = "An astronaut lounging in a tropical resort in space, pixel art"
 model = "dall-e-3"
 
+
 def main() -> None:
     # Generate an image based on the prompt
     response = openai.images.generate(prompt=prompt, model=model)
-    
+
     # Prints response containing a URL link to image
     print(response)
-    
+
+
 if __name__ == "__main__":
     main()