[VoiceLive] Release initial GA version 1.0.0#49206
Open
xitzhang wants to merge 10 commits into
Open
Conversation
…rialized audio sends
- Switch voice to AzureStandardVoice("en-US-AvaNeural") in MCPSample, VoiceAssistantSample, FunctionCallingSample (replaces OpenAIVoice ALLOY).
- Pin Whisper transcription language with setLanguage("en") to stop cross-language mis-detection.
- Block on the AudioCapture thread instead of fire-and-forget subscribe to sendInputAudio, preventing WebSocket send-sink FAIL_OVERFLOW.
- Add "Always respond in English" to assistant instructions.
- Add NEAR_FIELD AudioNoiseReduction to MCPSample for parity with VoiceAssistantSample.
- Drop unused OpenAIVoice/OpenAIVoiceName imports.
…sed truncateConversation, trim service versions to GA - ClientEvent -> SessionClientEvent and SessionUpdate -> SessionServerEvent (client/server symmetry) - MCP* -> Mcp* Pascal-case across model types - truncateConversation(String,int,int) -> truncateConversation(String,int,Duration); preserved 2-arg overload - Remove sendInputAudio(byte[]) in favor of BinaryData overload - AgentSessionConfig.toQueryParameters() moved internal - AnimationOptions: setOutputs->setOutputTypes; setAnimation->setAnimationOptions - LogProbProperties: getLogprob->getLogProb; getLogprobs->getLogProbs - VoiceLiveServiceVersion: keep only GA versions V2025_10_01 and V2026_04_10 (latest) - Restored no-arg startSession() overload - Update README, CHANGELOG, samples, and tests to match - Fix checkstyle unused imports in AgentSessionConfigTest
Linux CI compilation failed because the file names on disk were still MCP* (Windows treats them as same path). Properly rename via git mv to Mcp* / McpSample.java to match the public class declarations.
… FS) Rename MCP* -> Mcp* via git mv so the on-disk file names match the public class declarations; previously the merge brought renamed paths from main but local working tree retained MCP* casing, which broke Linux CI compilation.
…ure-sdk-for-java into xitzhang/release1.0.0
Per reviewer feedback: callers with raw bytes can wrap with BinaryData.fromBytes(byte[]). Javadoc updated to mention this.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Release initial GA version 1.0.0
All SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines