Skip to content

Commit 315daf2

Browse files
committed
update
1 parent a3bdc06 commit 315daf2

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

firebase-ai/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Unreleased
22

3+
- [changed] Added `LiveAudioConversationConfig` to control different aspects of the conversation
4+
while using the `startAudioConversation` function.
5+
- [fixed] Fixed an issue causing streaming chat interactions to drop thought signatures. (#7562)
6+
7+
# 17.6.0
8+
9+
- [feature] Added support for server templates via `TemplateGenerativeModel` and
10+
`TemplateImagenModel`. (#7503)
11+
12+
# 17.5.0
13+
314
- [changed] Added better scheduling and louder output for Live API.
415
- [changed] Added support for input and output transcription. (#7482)
516
- [feature] Added support for sending realtime audio and video in a `LiveSession`.

firebase-ai/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
version=17.5.0
16-
latestReleasedVersion=17.4.0
15+
version=17.7.0
16+
latestReleasedVersion=17.6.0

firebase-ai/src/main/kotlin/com/google/firebase/ai/type/AudioHelper.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ internal class AudioHelper(
158158
* constructor.
159159
*
160160
* @param audioHandler A callback that is invoked immediately following the successful
161-
* initialization of the associated [AudioRecord] and [AudioTrack] objects. This offers a final
162-
* opportunity to configure these objects, which will remain valid and effective for the
163-
* duration of the current audio session.
161+
* initialization of the associated [AudioRecord.Builder] and [AudioTrack.Builder] objects. This
162+
* offers a final opportunity to configure these objects, which will remain valid and effective
163+
* for the duration of the current audio session.
164164
*/
165165
@RequiresPermission(Manifest.permission.RECORD_AUDIO)
166166
fun build(

0 commit comments

Comments
 (0)