-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add AI summary generation and bump version to 0.1.2
- Introduced configuration options for AI summary generation in blog-ai-tool.toml, including a toggle and maximum length setting. - Updated metadata generation logic in blog_seo.py to include AI-generated summaries based on the new configuration. - Bumped project version to 0.1.2 in pyproject.toml and __init__.py to reflect the new features.
- Loading branch information
Showing
4 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .blog_seo import HugoBlogProcessor, metadata_blog_directory | ||
from .main import load_config | ||
|
||
__version__ = "0.1.1" | ||
__version__ = "0.1.2" | ||
__all__ = ["HugoBlogProcessor", "metadata_blog_directory", "load_config"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters