From e83b81e7064fe84acb34c7aa08670346554f4f80 Mon Sep 17 00:00:00 2001 From: Vivek Date: Mon, 16 Mar 2026 15:35:30 +0000 Subject: [PATCH] docs(examples): add module docstring to picture.py example --- examples/picture.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/picture.py b/examples/picture.py index c27b52b0da..f496c89b9c 100644 --- a/examples/picture.py +++ b/examples/picture.py @@ -1,4 +1,10 @@ #!/usr/bin/env python +""" +Example script demonstrating image generation using DALL-E 3. + +This script generates an image from a text prompt using OpenAI's DALL-E 3 model +and prints the response containing a URL to the generated image. +""" from openai import OpenAI