Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
20cc201
[VoiceLive] Add async function-calling agent sample
Sep 11, 2025
cd80871
add phrase list
Sep 12, 2025
ab12080
fix typo
Sep 12, 2025
ccbe48c
Update sdk/ai/azure-ai-voicelive/samples/async_function_calling_sampl…
xitzhang Sep 12, 2025
7e17d7f
Update sdk/ai/azure-ai-voicelive/samples/async_function_calling_sampl…
xitzhang Sep 12, 2025
e8c1dc5
update
Sep 12, 2025
9119f57
Merge branch 'main' of https://github.com/rhurey/azure-sdk-for-python
Sep 12, 2025
353e7d2
fix typo
Sep 12, 2025
52ca461
update changelog
Sep 12, 2025
78f88f7
update
Sep 12, 2025
6aa0ebb
remove breaking change section
Sep 12, 2025
adf3104
update changelog
Sep 12, 2025
c3f278a
fix change log
Sep 12, 2025
c40e7dc
revert changelog I lost
Sep 12, 2025
f37806f
update version and change log
Sep 12, 2025
4b4c063
enable type verification
Sep 12, 2025
c6e6f0b
update
Sep 12, 2025
a254ba6
Merge remote-tracking branch 'upstream/main'
Sep 13, 2025
c44767a
Merge remote-tracking branch 'upstream/main'
Sep 17, 2025
92c5df0
Merge remote-tracking branch 'upstream/main'
Sep 18, 2025
139241d
Merge remote-tracking branch 'upstream/main'
Sep 19, 2025
16540e0
[VoiceLive] Relase 1.0.0b4
Sep 19, 2025
b5f06d9
Merge remote-tracking branch 'upstream/main'
Sep 22, 2025
ac776d1
Merge remote-tracking branch 'upstream/main'
Sep 27, 2025
5baf8c5
Merge remote-tracking branch 'upstream/main'
Sep 30, 2025
9d93301
Merge remote-tracking branch 'upstream/main'
Oct 1, 2025
9925cc4
Merge remote-tracking branch 'upstream/main'
Oct 2, 2025
9ceca94
Merge remote-tracking branch 'upstream/main'
Oct 2, 2025
6f3a7d6
[VoiceLive] Use playback
Oct 2, 2025
46e8f7e
Merge remote-tracking branch 'upstream/main' into xitzhang/updatetest…
Oct 8, 2025
205d19f
udpate smoke test name
Oct 8, 2025
0f04034
update assets
Oct 9, 2025
f65e2f5
update the matrix configs for tests.yml so that InstallPortAudio sect…
scbedd Oct 10, 2025
b493598
Merge remote-tracking branch 'upstream/main' into xitzhang/updatetest…
Oct 10, 2025
20c80ef
update assets path
Oct 10, 2025
2eb3838
Merge branch 'xitzhang/updatetestrecording' of https://github.com/rhu…
Oct 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/ai/azure-ai-voicelive/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "python",
"TagPrefix": "python/ai/azure-ai-voicelive",
"Tag": "python/ai/azure-ai-voicelive_9c84c5d9c2"
"Tag": "python/ai/azure-ai-voicelive_50b02ab530"
}
6 changes: 6 additions & 0 deletions sdk/ai/azure-ai-voicelive/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ extends:
ServiceDirectory: ai
TestResourceDirectories:
- ai/azure-ai-voicelive
MatrixConfigs:
- Name: ai_ci_matrix
Path: sdk/ai/platform-matrix.json
Selection: sparse
GenerateVMJobs: true
EnvVars:
AZURE_TEST_RUN_LIVE: 'true'
AZURE_TEST_USE_CLI_AUTH: 'true'
AZURE_SKIP_LIVE_RECORDING: 'true'
VOICELIVE_OPENAI_ENDPOINT: $(VoiceLiveOpenAIEndpoint)
VOICELIVE_OPENAI_API_KEY: $(VoiceLiveOpenAIApiKey)
8 changes: 0 additions & 8 deletions sdk/ai/azure-ai-voicelive/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import base64
from devtools_testutils import test_proxy, is_live

from devtools_testutils.helpers import locate_assets
from pathlib import Path


Expand All @@ -23,13 +22,6 @@ def pytest_runtest_setup(item):
pytest.skip("playback test only")


@pytest.fixture
def test_data_dir() -> Path:
base = Path(locate_assets(current_test_file=Path(__file__))) # ensure Path
full = base / "python" / "sdk" / "ai" / "azure-ai-voicelive" / "tests" / "data"
return full


@pytest.fixture(scope="session", autouse=True)
def start_proxy(test_proxy):
return
Loading
Loading