-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support response_type in runprompt #556
Merged
Merged
Conversation
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
The pull request contains a change in the structure of the TypeScript interfaces. The There seem to be no functional issues with this change, as long as all references in the codebase to this property have been updated accordingly to reflect this structural change. LGTM 🚀
|
/genai-describe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
prompt_template.d.ts
, there are adjustments to ordering and ideals of theModelOptions
andScriptRuntimeOptions
interfaces. New parameters likeresponseType
andresponseSchema
have been introduced to tackle output customization.pr-describe.genai.js
, a parametertemperature
has been added to the script() function and an instruction was added to the task guidance.pr-review-commit.genai.js
, a new rule for issue reporting was included in the instruction list.runprompt.genai.js
has been introduced in thegenaisrc/style/
directory. It appears to be a script for generating random numbers and producing responses in JSON format.The modifications revolve around better code organization, structure, and extended functionalities 🚀🔧💻.