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 {
77
77
LiveGenerationConfig ({
78
78
this .speechConfig,
79
79
super .responseModalities,
80
- super .candidateCount,
81
80
super .maxOutputTokens,
82
81
super .temperature,
83
82
super .topP,
Original file line number Diff line number Diff line change @@ -43,15 +43,13 @@ void main() {
43
43
final liveGenerationConfig = LiveGenerationConfig (
44
44
speechConfig: SpeechConfig (voiceName: 'Charon' ),
45
45
responseModalities: [ResponseModalities .text, ResponseModalities .audio],
46
- candidateCount: 2 ,
47
46
maxOutputTokens: 100 ,
48
47
temperature: 0.8 ,
49
48
topP: 0.95 ,
50
49
topK: 40 ,
51
50
);
52
51
53
52
expect (liveGenerationConfig.toJson (), {
54
- 'candidateCount' : 2 ,
55
53
'maxOutputTokens' : 100 ,
56
54
'temperature' : 0.8 ,
57
55
'topP' : 0.95 ,
Original file line number Diff line number Diff line change @@ -44,15 +44,13 @@ void main() {
44
44
final liveGenerationConfig = LiveGenerationConfig (
45
45
speechConfig: SpeechConfig (voiceName: 'Charon' ),
46
46
responseModalities: [ResponseModalities .text, ResponseModalities .audio],
47
- candidateCount: 2 ,
48
47
maxOutputTokens: 100 ,
49
48
temperature: 0.8 ,
50
49
topP: 0.95 ,
51
50
topK: 40 ,
52
51
);
53
52
54
53
expect (liveGenerationConfig.toJson (), {
55
- 'candidateCount' : 2 ,
56
54
'maxOutputTokens' : 100 ,
57
55
'temperature' : 0.8 ,
58
56
'topP' : 0.95 ,
You can’t perform that action at this time.
0 commit comments