mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-04-09 04:28:16 +00:00
61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
"""Prompt templates for AI-generated content."""
|
|
|
|
from string import Template
|
|
|
|
|
|
RELEASE_NOTES_PROMPT = Template(
|
|
"""Generate concise release notes for version $version based on these commits:
|
|
|
|
$commits
|
|
|
|
The commits follow the Conventional Commits standard (feat:, fix:, chore:, etc.).
|
|
|
|
Use this exact template format:
|
|
|
|
## What's Changed
|
|
|
|
### Features
|
|
- [List feat: commits here, using imperative mood like "Add X", "Implement Y"]
|
|
|
|
### Bug Fixes
|
|
- [List fix: commits here, using imperative mood like "Fix X", "Resolve Y"]
|
|
|
|
### Documentation
|
|
- [List docs: commits here, using imperative mood like "Update X", "Add Y"]
|
|
|
|
### Performance
|
|
- [List perf: commits here, using imperative mood like "Improve X", "Optimize Y"]
|
|
|
|
### Refactoring
|
|
- [List refactor: commits here, using imperative mood like "Refactor X", "Simplify Y"]
|
|
|
|
### Breaking Changes
|
|
- [List commits with BREAKING CHANGE in footer or ! after type, using imperative mood]$contributors_section
|
|
|
|
Instructions:
|
|
- Parse conventional commit format (type: description or type(scope): description)
|
|
- Only include sections that have relevant changes from the commits
|
|
- Skip chore:, ci:, test:, and style: commits unless significant
|
|
- Convert commit messages to imperative mood if needed (e.g., "adds" → "Add")
|
|
- Be concise but informative
|
|
- Focus on user-facing changes
|
|
- Use the exact Contributors list provided above, do not modify it
|
|
|
|
Keep it professional and clear."""
|
|
)
|
|
|
|
|
|
TRANSLATE_RELEASE_NOTES_PROMPT = Template(
|
|
"""Translate the following release notes into $language.
|
|
|
|
$release_notes
|
|
|
|
Instructions:
|
|
- Translate all section headers and descriptions naturally
|
|
- Keep markdown formatting (##, ###, -, etc.) exactly as-is
|
|
- Keep all proper nouns, code identifiers, class names, and technical terms unchanged
|
|
(e.g. "CrewAI", "LiteAgent", "ChromaDB", "MCP", "@username")
|
|
- Keep the ## Contributors section and GitHub usernames unchanged
|
|
- Do not add or remove any content, only translate"""
|
|
)
|