11 lines
242 B
Python
11 lines
242 B
Python
"""
|
|
Story Writer Service
|
|
|
|
Provides story generation functionality using prompt chaining.
|
|
Supports multiple personas, styles, and iterative story generation.
|
|
"""
|
|
|
|
from .story_service import StoryWriterService
|
|
|
|
__all__ = ['StoryWriterService']
|