@@ -18211,16 +18211,16 @@ class LiveClientSetup(_common.BaseModel):
1821118211 description="""Configures the proactivity of the model. This allows the model to respond proactively to
1821218212 the input and to ignore irrelevant input.""",
1821318213 )
18214- history_config: Optional[HistoryConfig] = Field(
18215- default=None,
18216- description="""Configures the exchange of history between the client and the server.""",
18217- )
1821818214 explicit_vad_signal: Optional[bool] = Field(
1821918215 default=None,
1822018216 description="""Configures the explicit VAD signal. If enabled, the client will send
1822118217 vad_signal to indicate the start and end of speech. This allows the server
1822218218 to process the audio more efficiently.""",
1822318219 )
18220+ history_config: Optional[HistoryConfig] = Field(
18221+ default=None,
18222+ description="""Configures the exchange of history between the client and the server.""",
18223+ )
1822418224
1822518225
1822618226class LiveClientSetupDict(TypedDict, total=False):
@@ -18272,14 +18272,14 @@ class LiveClientSetupDict(TypedDict, total=False):
1827218272 """Configures the proactivity of the model. This allows the model to respond proactively to
1827318273 the input and to ignore irrelevant input."""
1827418274
18275- history_config: Optional[HistoryConfigDict]
18276- """Configures the exchange of history between the client and the server."""
18277-
1827818275 explicit_vad_signal: Optional[bool]
1827918276 """Configures the explicit VAD signal. If enabled, the client will send
1828018277 vad_signal to indicate the start and end of speech. This allows the server
1828118278 to process the audio more efficiently."""
1828218279
18280+ history_config: Optional[HistoryConfigDict]
18281+ """Configures the exchange of history between the client and the server."""
18282+
1828318283
1828418284LiveClientSetupOrDict = Union[LiveClientSetup, LiveClientSetupDict]
1828518285
@@ -18764,16 +18764,16 @@ class LiveConnectConfig(_common.BaseModel):
1876418764 description="""Configures the proactivity of the model. This allows the model to respond proactively to
1876518765 the input and to ignore irrelevant input.""",
1876618766 )
18767- history_config: Optional[HistoryConfig] = Field(
18768- default=None,
18769- description="""Configures the exchange of history between the client and the server.""",
18770- )
1877118767 explicit_vad_signal: Optional[bool] = Field(
1877218768 default=None,
1877318769 description="""Configures the explicit VAD signal. If enabled, the client will send
1877418770 vad_signal to indicate the start and end of speech. This allows the server
1877518771 to process the audio more efficiently.""",
1877618772 )
18773+ history_config: Optional[HistoryConfig] = Field(
18774+ default=None,
18775+ description="""Configures the exchange of history between the client and the server.""",
18776+ )
1877718777
1877818778
1877918779class LiveConnectConfigDict(TypedDict, total=False):
@@ -18876,14 +18876,14 @@ class LiveConnectConfigDict(TypedDict, total=False):
1887618876 """Configures the proactivity of the model. This allows the model to respond proactively to
1887718877 the input and to ignore irrelevant input."""
1887818878
18879- history_config: Optional[HistoryConfigDict]
18880- """Configures the exchange of history between the client and the server."""
18881-
1888218879 explicit_vad_signal: Optional[bool]
1888318880 """Configures the explicit VAD signal. If enabled, the client will send
1888418881 vad_signal to indicate the start and end of speech. This allows the server
1888518882 to process the audio more efficiently."""
1888618883
18884+ history_config: Optional[HistoryConfigDict]
18885+ """Configures the exchange of history between the client and the server."""
18886+
1888718887
1888818888LiveConnectConfigOrDict = Union[LiveConnectConfig, LiveConnectConfigDict]
1888918889
0 commit comments