We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d22a1f9 commit 1bf0857Copy full SHA for 1bf0857
firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveServerMessage.kt
@@ -181,7 +181,10 @@ internal object LiveServerMessageSerializer :
181
"toolCall" in jsonObject -> LiveServerToolCall.InternalWrapper.serializer()
182
"toolCallCancellation" in jsonObject ->
183
LiveServerToolCallCancellation.InternalWrapper.serializer()
184
- else -> throw SerializationException("Unknown LiveServerMessage response type. Keys found: ${jsonObject.keys}")
+ else ->
185
+ throw SerializationException(
186
+ "Unknown LiveServerMessage response type. Keys found: ${jsonObject.keys}"
187
+ )
188
}
189
190
0 commit comments