fix prompt bug and pypi publish toml #100
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several important updates to the project, focusing on build system migration, codebase cleanup, and import path corrections. The most significant changes include switching from Hatchling to Setuptools for building packages, updating import paths to reflect the new module structure, and removing deprecated modules. Additionally, workflow prompt files have been fixed to use the correct imports, and
.gitignorehas been improved for better package management.Build system and package management:
pyproject.toml)..gitignoreto exclude**.egg-info/directories, preventing unnecessary files from being tracked.Codebase cleanup and module restructuring:
app/workflows/security/module, includingmetaprompts.pyand__init__.py, as metaprompts have been moved tointelligence_toolkit.AI.metaprompts. [1] [2] [3]Import path corrections and workflow fixes:
intelligence_toolkit/match_entity_records/prompts.pyandintelligence_toolkit/query_text_data/prompts.pyto useintelligence_toolkit.AI.metapromptsinstead of the old location, ensuring workflows use the correct prompt definitions. [1] [2] [3]Documentation improvements:
CHANGELOG.mdfile to document all notable changes, following the Keep a Changelog format and Semantic Versioning principles.