File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed
firebase_vertexai/firebase_vertexai/test Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ final class LiveGenerationConfig extends BaseGenerationConfig {
7777 LiveGenerationConfig ({
7878 this .speechConfig,
7979 super .responseModalities,
80- super .candidateCount,
8180 super .maxOutputTokens,
8281 super .temperature,
8382 super .topP,
Original file line number Diff line number Diff line change @@ -43,15 +43,13 @@ void main() {
4343 final liveGenerationConfig = LiveGenerationConfig (
4444 speechConfig: SpeechConfig (voiceName: 'Charon' ),
4545 responseModalities: [ResponseModalities .text, ResponseModalities .audio],
46- candidateCount: 2 ,
4746 maxOutputTokens: 100 ,
4847 temperature: 0.8 ,
4948 topP: 0.95 ,
5049 topK: 40 ,
5150 );
5251
5352 expect (liveGenerationConfig.toJson (), {
54- 'candidateCount' : 2 ,
5553 'maxOutputTokens' : 100 ,
5654 'temperature' : 0.8 ,
5755 'topP' : 0.95 ,
Original file line number Diff line number Diff line change @@ -44,15 +44,13 @@ void main() {
4444 final liveGenerationConfig = LiveGenerationConfig (
4545 speechConfig: SpeechConfig (voiceName: 'Charon' ),
4646 responseModalities: [ResponseModalities .text, ResponseModalities .audio],
47- candidateCount: 2 ,
4847 maxOutputTokens: 100 ,
4948 temperature: 0.8 ,
5049 topP: 0.95 ,
5150 topK: 40 ,
5251 );
5352
5453 expect (liveGenerationConfig.toJson (), {
55- 'candidateCount' : 2 ,
5654 'maxOutputTokens' : 100 ,
5755 'temperature' : 0.8 ,
5856 'topP' : 0.95 ,
You can’t perform that action at this time.
0 commit comments