__init__.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Copyright (C) 2025 AIDC-AI
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. # http://www.apache.org/licenses/LICENSE-2.0
  7. # Unless required by applicable law or agreed to in writing, software
  8. # distributed under the License is distributed on an "AS IS" BASIS,
  9. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. # See the License for the specific language governing permissions and
  11. # limitations under the License.
  12. """
  13. Prompts package
  14. Centralized prompt management for all LLM interactions.
  15. """
  16. # Narration prompts
  17. from pixelle_video.prompts.topic_narration import build_topic_narration_prompt
  18. from pixelle_video.prompts.content_narration import build_content_narration_prompt
  19. from pixelle_video.prompts.title_generation import build_title_generation_prompt
  20. # Image prompts
  21. from pixelle_video.prompts.image_generation import (
  22. build_image_prompt_prompt,
  23. IMAGE_STYLE_PRESETS,
  24. DEFAULT_IMAGE_STYLE
  25. )
  26. from pixelle_video.prompts.style_conversion import build_style_conversion_prompt
  27. __all__ = [
  28. # Narration builders
  29. "build_topic_narration_prompt",
  30. "build_content_narration_prompt",
  31. "build_title_generation_prompt",
  32. # Image builders
  33. "build_image_prompt_prompt",
  34. "build_style_conversion_prompt",
  35. # Image style presets
  36. "IMAGE_STYLE_PRESETS",
  37. "DEFAULT_IMAGE_STYLE",
  38. ]