@@ -66,16 +66,16 @@ public struct GenerationConfig: Sendable {
6666 /// > of variation is still possible.
6767 ///
6868 /// > Important: The range of supported temperature values depends on the model; see the
69- /// > [Cloud documentation](https://cloud .google.com/vertex-ai/generative-ai/docs/ model-reference/inference#generationconfig )
69+ /// > [documentation](https://firebase .google.com/docs/ vertex-ai/model-parameters?platform=ios#temperature )
7070 /// > for more details.
7171 /// - topP: Controls diversity of generated text. Higher values (e.g., 0.9) produce more diverse
7272 /// text, while lower values (e.g., 0.5) make the output more focused.
7373 ///
7474 /// The supported range is 0.0 to 1.0.
7575 ///
7676 /// > Important: The default `topP` value depends on the model; see the
77- /// [Cloud documentation](https://cloud .google.com/vertex-ai/generative-ai/docs/ model-reference/inference#generationconfig )
78- /// for more details.
77+ /// > [ documentation](https://firebase .google.com/docs/ vertex-ai/model-parameters?platform=ios#top-p )
78+ /// > for more details.
7979 /// - topK: Limits the number of highest probability words the model considers when generating
8080 /// text. For example, a topK of 40 means only the 40 most likely words are considered for the
8181 /// next token. A higher value increases diversity, while a lower value makes the output more
@@ -84,7 +84,7 @@ public struct GenerationConfig: Sendable {
8484 /// The supported range is 1 to 40.
8585 ///
8686 /// > Important: Support for `topK` and the default value depends on the model; see the
87- /// [Cloud documentation](https://cloud .google.com/vertex-ai/generative-ai/docs/ model-reference/inference#generationconfig )
87+ /// [documentation](https://firebase .google.com/docs/ vertex-ai/model-parameters?platform=ios#top-k )
8888 /// for more details.
8989 /// - candidateCount: The number of response variations to return; defaults to 1 if not set.
9090 /// Support for multiple candidates depends on the model; see the
@@ -137,8 +137,9 @@ public struct GenerationConfig: Sendable {
137137 /// - `application/json`: Schema for JSON response.
138138 ///
139139 /// Refer to the
140- /// [Control generated output](https://cloud.google.com/vertex-ai/generative-ai/docs/multimodal/control-generated-output)
141- /// guide for more details.
140+ /// [Generate structured
141+ /// output](https://firebase.google.com/docs/vertex-ai/structured-output?platform=ios) guide
142+ /// for more details.
142143 public init ( temperature: Float ? = nil , topP: Float ? = nil , topK: Int ? = nil ,
143144 candidateCount: Int ? = nil , maxOutputTokens: Int ? = nil ,
144145 presencePenalty: Float ? = nil , frequencyPenalty: Float ? = nil ,
0 commit comments