feat(js/core): add overwrite option in definePrompt#4924
feat(js/core): add overwrite option in definePrompt#49247hokerz wants to merge 1 commit intogenkit-ai:mainfrom
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces an Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces an overwrite option to definePrompt to suppress log messages when re-defining prompts, which is particularly useful for dynamic prompt management. The changes are well-plumbed through definePrompt, defineAction, defineActionAsync, and into the Registry methods registerAction and registerActionAsync. The core logic correctly uses the overwrite flag to conditionally log errors for duplicate registrations.
I have one suggestion regarding the API design of defineActionAsync to improve clarity and prevent potential misuse. Overall, this is a solid improvement.
|
@MichaelDoyle , Thanks for reply. When definePrompt is executed to update an existing prompt, it generates an overwrite warning or log. |
|
@MichaelDoyle, @pavelgj, Could you please look over the comment I left? |
|
@7hokerz if I understand the PR, we're adding an If that's the case, I think this is a bit confusing and we're better off just adjusting the log level to |
|
@MichaelDoyle , Oh, I think your approach is simpler and more efficient than the current PR. However, my intention was to allow developers to explicitly determine whether the behavior is an error or not through the overwrite option. |
|
@MichaelDoyle In that case, would it be best to actually add special logic regarding overwriting here? |
Description here... Help the reviewer by:
(In my personal backend development, I faced a problem with excessive logging during the dynamic prompt management process, especially when applying changes post-initialization.)
Checklist (if applicable):