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 4bacc87 commit 7c745d5Copy full SHA for 7c745d5
firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type/LiveContentResponse.kt
@@ -54,7 +54,12 @@ internal constructor(
54
public companion object {
55
/** Indicates that server has sent data and will continue to send data. */
56
public val NORMAL: Status = Status(0)
57
- /** Indicates that the server was interrupted. */
+ /**
58
+ * The server was interrupted while generating data.
59
+ *
60
+ * An interruption occurs when the client sends a message while the server is
61
+ * [actively][NORMAL] sending data.
62
+ */
63
public val INTERRUPTED: Status = Status(1)
64
/** Indicates that a turn in the interaction has been completed. */
65
public val TURN_COMPLETE: Status = Status(2)
0 commit comments