19 lines
486 B
Python
19 lines
486 B
Python
"""
|
|
LinkedIn Image Prompts Package
|
|
|
|
This package provides AI-powered image prompt generation for LinkedIn content
|
|
using Google's Gemini API. It creates three distinct prompt styles optimized
|
|
for professional business image generation.
|
|
"""
|
|
|
|
from .linkedin_prompt_generator import LinkedInPromptGenerator
|
|
|
|
__all__ = [
|
|
'LinkedInPromptGenerator'
|
|
]
|
|
|
|
# Version information
|
|
__version__ = "1.0.0"
|
|
__author__ = "Alwrity Team"
|
|
__description__ = "LinkedIn AI Image Prompt Generation Services"
|