什麼是提示轉換?
提示轉換是 DALL-E 3 影像產生作業中的一個流程,先使用大型語言模型 (LLM) 呼叫將安全性和品質系統訊息套用至原始提示,再傳送至模型以進行影像產生。 此系統訊息會擴充您的原始提示,目標是在維持意圖的同時,產生更多樣化且品質更高的影像。
在提示轉換套用至原始提示之後,在產生影像之前進行內容篩選作為第二步驟;如需詳細資訊,請參閱內容篩選。
提示
在 OpenAI 的 DALL E 文件中深入了解影像產生提示。
提示轉換範例
範例文字提示 | 沒有提示轉換的範例產生影像 | 具有提示轉換的範例產生影像 |
---|---|---|
「西雅圖天際線的水彩畫」 |
為什麼需要提示轉換?
提示轉換對於負責且高品質的影像產生作業至關重要。 提示轉換不僅能改善所產生影像的安全性,還能以更具描述性的方式來擴充您的提示,進而提升影像的品質和描述性。
Azure OpenAI DALL-E 3 中的預設提示轉換包含安全性增強功能,避免模型產生的影像內含 Copyright Studio 字元和藝術作品、公眾人物及其他有害內容,例如性、仇恨和不公、暴力及自殘內容。
如何使用提示轉換?
依預設,提示轉換會套用至所有 Azure OpenAI DALL-E 3 要求。 不需要額外的設定,即可受益於提示轉換增強功能。
和影像產生一樣,由於大型語言模型的性質,提示轉換是不確定的。 單一個原始提示可能會造成許多影像變異。
檢視提示轉換
您已修訂或已轉換的提示會顯示在如這裡所示的 API 回應物件中,位於 revised_prompt
欄位。
Input Content:
{
"prompt": "Watercolor painting of the Seattle skyline",
"n": 1,
"size": "1024x1024"
}
Output Content:
{
"created": 1720557218,
"data": [
{
"content_filter_results": {
...
},
"prompt_filter_results": {
...
},
"revised_prompt": "A soft and vivid watercolor painting capturing the scenic beauty of the Seattle skyline. The painting illustrates a setting sun casting warm hues over the sprawling cityscape, with the Space Needle prominently standing tall against the sky. Imagine the scattered high-rise buildings, a soothing blend of the lush green of the parks with the winding blue water of the Puget Sound, and the snow-covered peak of Mount Rainier in the distance. A play of light and shadow adds depth and dynamism to this multihued urban panorama."
}
}