-
Notifications
You must be signed in to change notification settings - Fork 4k
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
feat(vertexai): Add repetition penalties to GenerationConfig #17234
feat(vertexai): Add repetition penalties to GenerationConfig #17234
Conversation
This commit adds two new instance variables, and , to the class. These variables control the likelihood of repeating words or phrases in the generated text. The implementation is based on the Swift SDK and includes corresponding documentation. Note: Unable to run tests due to unavailable test execution environment.
cc: @cynthiajoan This isn't urgent but hopefully this will provide most or all of the code changes necessary for adding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, we should put them into the base configuration class so it can share with LiveConfig
Both `presencePenalty` and `frequencyPenalty` have now been added to: https://firebase.google.com/docs/vertex-ai/model-parameters?platform=flutter#configure-model-parameters-gemini
Description
Added support for repetition penalties (
presencePenalty
andfrequencyPenalty
) inGenerationConfig
in the Vertex AI in Firebase SDK. This brings it in alignment with the other SDKs.AI Prompt
The initial commit was generated with Jules using the following prompt:
Checklist
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (
[x]
).This will ensure a smooth and quick review process. Updating the
pubspec.yaml
and changelogs is not required.///
).melos run analyze
) does not report any problems on my PR.Breaking Change
Does your PR require plugin users to manually update their apps to accommodate your change?