Papayne/project assistant transfer ids #586
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 significant changes to the
project-assistant
codebase, focusing on renaming and refactoring the "Context Transfer" feature to "Knowledge Transfer," improving logging practices by reducing verbosity, and cleaning up unused or redundant code. These updates enhance clarity, maintainability, and alignment with the new terminology.Renaming and Refactoring "Context Transfer" to "Knowledge Transfer":
ContextTransfer
toKnowledgeTransfer
, including class names, file names, and variables. For example,ContextTransferConfigModel
was renamed toKnowledgeTransferConfigModel
, and the filecontext_transfer.py
was renamed toknowledge_transfer.py
. [1] [2] [3] [4]context_transfer_card_content.md
andcontext_transfer_whiteboard_prompt.txt
) to their knowledge-specific counterparts. [1] [2]Logging Improvements:
logger.info
statements tologger.debug
, especially for routine operations like file handling and conversation association. [1] [2] [3]Code Cleanup and Simplification:
ConfigurationTemplate
class and theget_template
function fromproject_common.py
, as they were no longer necessary after the refactor.Configuration Updates:
PromptConfig
schema to reflect the new structure, replacing fields likeinstruction_prompt
withcoordinator_role
andteam_role
.KnowledgeTransferConfigModel
instead of the deprecatedContextTransferConfigModel
. [1] [2]Asset and Template Updates:
content_evaluator_factory
and dashboard cards to use the newKNOWLEDGE_TRANSFER_TEMPLATE_ID
and associated assets. [1] [2]These changes collectively streamline the codebase, align terminology with the updated feature name, and improve maintainability.